diff options
Diffstat (limited to 'src/lib/libcrypto/util/domd')
-rw-r--r-- | src/lib/libcrypto/util/domd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/lib/libcrypto/util/domd b/src/lib/libcrypto/util/domd new file mode 100644 index 0000000000..324051f60b --- /dev/null +++ b/src/lib/libcrypto/util/domd | |||
@@ -0,0 +1,11 @@ | |||
1 | #!/bin/sh | ||
2 | # Do a makedepend, only leave out the standard headers | ||
3 | # Written by Ben Laurie <ben@algroup.co.uk> 19 Jan 1999 | ||
4 | |||
5 | TOP=$1 | ||
6 | shift | ||
7 | |||
8 | cp Makefile.ssl Makefile.save | ||
9 | makedepend -f Makefile.ssl $@ | ||
10 | $TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new | ||
11 | mv Makefile.new Makefile.ssl | ||