aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-03-07 04:35:13 +0000
committerDavid Robillard <d@drobilla.net>2009-03-07 04:35:13 +0000
commitb754068a1e11cf480469836c6a04c6614f4d63c5 (patch)
tree7aa986f288e6b967db5b2de664acbe29a13690d3 /Makefile
parent6d9b8a06e9d9fece731d045db2f815f261db09c3 (diff)
downloadresp-b754068a1e11cf480469836c6a04c6614f4d63c5.tar.gz
resp-b754068a1e11cf480469836c6a04c6614f4d63c5.tar.bz2
resp-b754068a1e11cf480469836c6a04c6614f4d63c5.zip
Stream based serialisation of AST nodes (can write arbitrarily large expressions without chewing memory).
git-svn-id: http://svn.drobilla.net/resp/tuplr@75 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 001c37d..5ab2806 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
-tuplr: tuplr.o typing.o llvm.o
+tuplr: tuplr.o typing.o llvm.o write.o
g++ -o $@ $^ $(LDFLAGS)
%.o: %.cpp tuplr.hpp