Make the choice of "makedepend" program choosable through a switch.

This commit is contained in:
Richard Levitte 2001-02-19 12:51:14 +00:00
parent b36c170d1b
commit b0c8638650

View file

@ -4,8 +4,11 @@
TOP=$1
shift
MAKEDEPEND=$1
shift
if [ "$1" = "-MD" ]; then
shift
MAKEDEPEND=$1
shift
fi
if [ "$MAKEDEPEND" = "" ]; then MAKEDEPEND=makedepend; fi
cp Makefile.ssl Makefile.save