Use generic $(MAKE) in Makefile

This commit is contained in:
Pieter Noordhuis 2010-12-16 21:59:28 +01:00
parent 2ef9c2e5f7
commit a2e28901a0

View File

@ -97,13 +97,13 @@ install: ${DYLIBNAME} ${STLIBNAME}
@echo "" @echo ""
@echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386" @echo "WARNING: if it fails under Linux you probably need to install libc6-dev-i386"
@echo "" @echo ""
make ARCH="-m32" $(MAKE) ARCH="-m32"
gprof: gprof:
make PROF="-pg" $(MAKE) PROF="-pg"
gcov: gcov:
make PROF="-fprofile-arcs -ftest-coverage" $(MAKE) PROF="-fprofile-arcs -ftest-coverage"
noopt: noopt:
make OPTIMIZATION="" $(MAKE) OPTIMIZATION=""