From 563a807be78bfe12e5bfbb9ff0d6da44242696c4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 2 Dec 2010 06:16:29 +0000 Subject: 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 --- Makefile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'Makefile') 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) -- cgit v1.2.1