aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-06-28 23:21:30 +0000
committerDavid Robillard <d@drobilla.net>2009-06-28 23:21:30 +0000
commit84274ac380968df9fb49bcbf6f3d494536d7a548 (patch)
tree6fc404079e4bf0a001e0f47a13060c51337aa29d /Makefile
parent87778a3526c38e0570a9462bf28ae87d38cf8ad1 (diff)
downloadresp-84274ac380968df9fb49bcbf6f3d494536d7a548.tar.gz
resp-84274ac380968df9fb49bcbf6f3d494536d7a548.tar.bz2
resp-84274ac380968df9fb49bcbf6f3d494536d7a548.zip
Split unification into a separate file than type constraints.
git-svn-id: http://svn.drobilla.net/resp/tuplr@159 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6c7c4eb..fbd1201 100644
--- a/Makefile
+++ b/Makefile
@@ -11,13 +11,14 @@ builddir:
mkdir -p build
OBJECTS = \
+ build/cps.o \
+ build/gc.o \
+ build/gclib.so \
+ build/llvm.so \
build/tuplr.o \
build/typing.o \
- build/llvm.so \
- build/gclib.so \
- build/write.o \
- build/gc.o \
- build/cps.o
+ build/unify.o \
+ build/write.o
build/tuplr: $(OBJECTS)
g++ -o $@ $^ $(LDFLAGS)