diff options
author | David Robillard <d@drobilla.net> | 2009-03-07 04:35:13 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2009-03-07 04:35:13 +0000 |
commit | b754068a1e11cf480469836c6a04c6614f4d63c5 (patch) | |
tree | 7aa986f288e6b967db5b2de664acbe29a13690d3 /Makefile | |
parent | 6d9b8a06e9d9fece731d045db2f815f261db09c3 (diff) | |
download | resp-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |