1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-20 11:11:24 +00:00
freebsd/crypto/openssl/util/domd

35 lines
990 B
Plaintext
Raw Normal View History

#!/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
if [ "$1" = "-MD" ]; then
shift
MAKEDEPEND=$1
shift
fi
if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi
2005-02-25 05:39:05 +00:00
cp Makefile Makefile.save
# fake the presence of Kerberos
touch $TOP/krb5.h
2010-02-28 18:49:43 +00:00
if expr "$MAKEDEPEND" : '.*gcc$' > /dev/null; then
args=""
while [ $# -gt 0 ]; do
if [ "$1" != "--" ]; then args="$args $1"; fi
shift
done
2005-02-25 05:39:05 +00:00
sed -e '/^# DO NOT DELETE.*/,$d' < Makefile > Makefile.tmp
echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
2009-06-07 19:56:18 +00:00
${CC:-gcc} -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp
${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new
rm -f Makefile.tmp
else
2006-07-29 19:10:21 +00:00
${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND $@
2005-02-25 05:39:05 +00:00
${PERL} $TOP/util/clean-depend.pl < Makefile > Makefile.new
fi
2005-02-25 05:39:05 +00:00
mv Makefile.new Makefile
# unfake the presence of Kerberos
rm $TOP/krb5.h