diff options
author | Teddy <[email protected]> | 2013-08-03 23:09:59 +0800 |
---|---|---|
committer | Teddy <[email protected]> | 2013-08-03 23:09:59 +0800 |
commit | c66dc142d240ec2e2ae78201d9614de76535be38 (patch) | |
tree | c9df286951328d7a477415946e8000beef6843ad /Makefile | |
parent | e462669c3c3cc04ea29420e14dbb589899d201ec (diff) |
C++ version now works!
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,5 @@ -main: parser.o builtin.o model.o main.o - g++ -o main $^ +main: main.o parser.o builtin.o model.o eval.o + g++ -o main $^ -g .cpp.o: g++ $< -c -g -DDEBUG @@ -7,3 +7,6 @@ main: parser.o builtin.o model.o main.o clean: rm -f *.o rm -f main + +db: + gdb main |