aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-15 08:30:12 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-15 08:30:12 +0800
commit3c6e957edadd896e15c32c5f7765913c8ad4d63c (patch)
tree3973035dcf7b3789bb98b10e6eb50d0b428ee5c7 /Makefile
parentaddbfae58d8afceb06d92f6ef1cdfed89c07518b (diff)
tail-recursion opt in user-def call
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2558d7b..6b867c3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
CXX = g++ -DGMP_SUPPORT
BUILD_DIR = build
-all: gc_debug
+all: release
debug: CXX += -DGC_INFO -g -pg
gc_debug: CXX += -DGC_INFO -DGC_DEBUG -g -pg
release: CXX += -O2