diff options
author | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-16 21:59:28 +0100 |
---|---|---|
committer | Pieter Noordhuis <pcnoordhuis@gmail.com> | 2010-12-16 21:59:28 +0100 |
commit | a2e28901a0502c3b356fd52b8c3fb6ff7d40f51f (patch) | |
tree | b99c8c602df0282b7f1be295904f558698e35e2a /Makefile | |
parent | 2ef9c2e5f769bb5233f740250b0c7a0159e56fae (diff) |
Use generic $(MAKE) in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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="" |