2000-01-10 06:22:05 +00:00
|
|
|
#!/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
|
2003-01-28 21:43:22 +00:00
|
|
|
if [ "$1" = "-MD" ]; then
|
|
|
|
shift
|
|
|
|
MAKEDEPEND=$1
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi
|
2000-01-10 06:22:05 +00:00
|
|
|
|
2017-01-26 18:32:12 +00:00
|
|
|
# Preserve Makefile timestamp by moving instead of copying (cp -p is GNU only)
|
|
|
|
mv Makefile Makefile.save
|
|
|
|
cp Makefile.save Makefile
|
2003-01-28 21:43:22 +00:00
|
|
|
# fake the presence of Kerberos
|
|
|
|
touch $TOP/krb5.h
|
2016-01-28 18:41:59 +00:00
|
|
|
if ${MAKEDEPEND} --version 2>&1 | grep "clang" > /dev/null ||
|
|
|
|
echo $MAKEDEPEND | grep "gcc" > /dev/null; then
|
2003-01-28 21:43:22 +00:00
|
|
|
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
|
2003-01-28 21:43:22 +00:00
|
|
|
echo '# DO NOT DELETE THIS LINE -- make depend depends on it.' >> Makefile.tmp
|
2012-07-11 23:31:36 +00:00
|
|
|
${MAKEDEPEND} -Werror -D OPENSSL_DOING_MAKEDEPEND -M $args >> Makefile.tmp || exit 1
|
2003-01-28 21:43:22 +00:00
|
|
|
${PERL} $TOP/util/clean-depend.pl < Makefile.tmp > Makefile.new
|
2012-07-11 23:31:36 +00:00
|
|
|
RC=$?
|
2003-01-28 21:43:22 +00:00
|
|
|
rm -f Makefile.tmp
|
|
|
|
else
|
2012-07-11 23:31:36 +00:00
|
|
|
${MAKEDEPEND} -D OPENSSL_DOING_MAKEDEPEND $@ && \
|
2005-02-25 05:39:05 +00:00
|
|
|
${PERL} $TOP/util/clean-depend.pl < Makefile > Makefile.new
|
2012-07-11 23:31:36 +00:00
|
|
|
RC=$?
|
2003-01-28 21:43:22 +00:00
|
|
|
fi
|
2017-01-26 18:32:12 +00:00
|
|
|
if ! cmp -s Makefile.save Makefile.new; then
|
|
|
|
mv Makefile.new Makefile
|
|
|
|
else
|
|
|
|
mv Makefile.save Makefile
|
|
|
|
rm -f Makefile.new
|
|
|
|
fi
|
2003-01-28 21:43:22 +00:00
|
|
|
# unfake the presence of Kerberos
|
|
|
|
rm $TOP/krb5.h
|
2012-07-11 23:31:36 +00:00
|
|
|
|
|
|
|
exit $RC
|