diff options
Diffstat (limited to 'crypto/openssl/util/domd')
-rwxr-xr-x | crypto/openssl/util/domd | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/openssl/util/domd b/crypto/openssl/util/domd new file mode 100755 index 0000000..324051f --- /dev/null +++ b/crypto/openssl/util/domd @@ -0,0 +1,11 @@ +#!/bin/sh +# Do a makedepend, only leave out the standard headers +# Written by Ben Laurie <ben@algroup.co.uk> 19 Jan 1999 + +TOP=$1 +shift + +cp Makefile.ssl Makefile.save +makedepend -f Makefile.ssl $@ +$TOP/util/clean-depend.pl < Makefile.ssl > Makefile.new +mv Makefile.new Makefile.ssl |