Use generic $(MAKE) in Makefile

master
Pieter Noordhuis 2010-12-16 21:59:28 +01:00
parent 2ef9c2e5f7
commit a2e28901a0
1 changed files with 4 additions and 4 deletions

View File

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