aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2013-08-07 15:43:54 +0800
committerTeddy <ted.sybil@gmail.com>2013-08-07 15:43:54 +0800
commite0c274fc6b7dc1c500ceb1375c2a8c4a09c1018c (patch)
treef0cfe8958b20a3516797762ea3015c1a17341a25 /Makefile
parent8a92faf9f1e9f77e05db7dc8a1399317ba530f93 (diff)
added GMP support
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4c2071c..3a3f37a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,8 +1,8 @@
main: main.o parser.o builtin.o model.o eval.o exc.o consts.o
- g++ -o main $^ -pg
+ g++ -o main $^ -pg -lgmp
.cpp.o:
- g++ $< -c -g -pg -DDEBUG
+ g++ $< -c -g -pg -DDEBUG -DGMP_SUPPORT
clean:
rm -f *.o