build: compile release build too if BUILDTYPE=Debug
authorBen Noordhuis <info@bnoordhuis.nl>
Thu, 26 Jan 2012 22:45:16 +0000 (23:45 +0100)
committerBen Noordhuis <info@bnoordhuis.nl>
Thu, 26 Jan 2012 22:49:57 +0000 (23:49 +0100)
It's backwards compatible with the old waf build system. If you want to compile
just the debug build, run `make -C out BUILDTYPE=Debug` instead.

Fixes #2615.

Makefile

index 33c9e18..0d191f7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,12 @@
 BUILDTYPE ?= Release
 PYTHON ?= python
 
+# BUILDTYPE=Debug builds both release and debug builds. If you want to compile
+# just the debug build, run `make -C out BUILDTYPE=Debug` instead.
 ifeq ($(BUILDTYPE),Release)
 all: out/Makefile node
 else
-all: out/Makefile node_g
+all: out/Makefile node node_g
 endif
 
 # The .PHONY is needed to ensure that we recursively use the out/Makefile