aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-24 04:46:57 +0000
committerDavid Robillard <d@drobilla.net>2009-06-24 04:46:57 +0000
commit2235923ea73318d3eeba64754f461209c23d9f2f (patch)
tree75fdcf48c25e26419c09f5eb064fb48dbe65fd86 /Makefile
parent0c98e0fc52c08d9c87af4e72112b8f774a04f3af (diff)
downloadresp-2235923ea73318d3eeba64754f461209c23d9f2f.tar.gz
resp-2235923ea73318d3eeba64754f461209c23d9f2f.tar.bz2
resp-2235923ea73318d3eeba64754f461209c23d9f2f.zip
Funcs => AFn::Impls
git-svn-id: http://svn.drobilla.net/resp/tuplr@146 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 9 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index de198e1..3ba8d84 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,15 @@ all: builddir build/tuplr
builddir:
mkdir -p build
-build/tuplr: build/tuplr.o build/typing.o build/llvm.so build/gclib.so build/write.o build/gc.o
+OBJECTS = \
+ build/tuplr.o \
+ build/typing.o \
+ build/llvm.so \
+ build/gclib.so \
+ build/write.o \
+ build/gc.o
+
+build/tuplr: $(OBJECTS)
g++ -o $@ $^ $(LDFLAGS)
build/%.o: %.cpp tuplr.hpp