aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-19 03:11:33 +0000
committerDavid Robillard <d@drobilla.net>2009-06-19 03:11:33 +0000
commit855456a9d98c5c27bb2b00bab4018630598117fa (patch)
tree8c13f757d5439558cba32eb0db050d76788b7a92 /Makefile
parent450137a8283cdc123b22a884d6af7fef2f3aae76 (diff)
downloadresp-855456a9d98c5c27bb2b00bab4018630598117fa.tar.gz
resp-855456a9d98c5c27bb2b00bab4018630598117fa.tar.bz2
resp-855456a9d98c5c27bb2b00bab4018630598117fa.zip
Primitive garbage collector for AST nodes.
Fix memory leaks. git-svn-id: http://svn.drobilla.net/resp/tuplr@123 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 83fdfb0..d2fa881 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ LLVM_LDFLAGS=`llvm-config --ldflags --libs core jit native`
CXXFLAGS=-O0 -g -Wall -Wextra -Wno-unused-parameter $(LLVM_CXXFLAGS)
LDFLAGS=$(LLVM_LDFLAGS) -lm
-build/tuplr: build/tuplr.o build/typing.o build/llvm.o build/write.o
+build/tuplr: build/tuplr.o build/typing.o build/llvm.o build/write.o build/gc.o
g++ -o $@ $^ $(LDFLAGS)
build/%.o: %.cpp tuplr.hpp