aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-12-02 06:16:29 +0000
committerDavid Robillard <d@drobilla.net>2010-12-02 06:16:29 +0000
commit563a807be78bfe12e5bfbb9ff0d6da44242696c4 (patch)
tree13cf7ce3b90d072d6e7106c7d2eb4da33209acb0 /Makefile
parent32ac40a9ef62d2109563e36fb7cd478426c3489f (diff)
downloadresp-563a807be78bfe12e5bfbb9ff0d6da44242696c4.tar.gz
resp-563a807be78bfe12e5bfbb9ff0d6da44242696c4.tar.bz2
resp-563a807be78bfe12e5bfbb9ff0d6da44242696c4.zip
Represent code as list structure (i.e. traditional LISP lists built from pairs), rather than tuple structure.
Remove unused/crufty depoly stage. Remove cps from AST interface (but keep cps.cpp code around for later). Improved command line interface for compilation stages (options -T -L -S). git-svn-id: http://svn.drobilla.net/resp/resp@277 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 6b3107b..45a0977 100644
--- a/Makefile
+++ b/Makefile
@@ -25,8 +25,6 @@ OBJECTS = \
build/c.o \
build/compile.o \
build/constrain.o \
- build/cps.o \
- build/depoly.o \
build/gc.o \
build/lex.o \
build/lift.o \
@@ -34,12 +32,11 @@ OBJECTS = \
build/pprint.o \
build/repl.o \
build/resp.o \
+ build/resp_gc.o \
build/tlsf.o \
- build/unify.o \
- build/resp_gc.o
+ build/unify.o
LLVM_OBJECTS = build/llvm.o
-#LLVM_OBJECTS =
build/resp: $(OBJECTS) $(LLVM_OBJECTS)
g++ -o $@ $(OBJECTS) $(LLVM_OBJECTS) $(LDFLAGS) $(LLVM_LDFLAGS)