summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorPieter Noordhuis <pcnoordhuis@gmail.com>2010-12-16 21:59:28 +0100
committerPieter Noordhuis <pcnoordhuis@gmail.com>2010-12-16 21:59:28 +0100
commita2e28901a0502c3b356fd52b8c3fb6ff7d40f51f (patch)
treeb99c8c602df0282b7f1be295904f558698e35e2a /Makefile
parent2ef9c2e5f769bb5233f740250b0c7a0159e56fae (diff)
Use generic $(MAKE) in Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 53d8bcc..77966ba 100644
--- a/Makefile
+++ b/Makefile
@@ -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=""