aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--test/Makefile.target10
-rw-r--r--test/Makefile.tests10
2 files changed, 16 insertions, 4 deletions
diff --git a/test/Makefile.target b/test/Makefile.target
index c9f1e38..7e54ccc 100644
--- a/test/Makefile.target
+++ b/test/Makefile.target
@@ -1,3 +1,8 @@
+## -*-Makefile-*-
+##------------------------------------------------------------------------
+## Common rules for generating, linking, and compiling via LLVM.
+##------------------------------------------------------------------------
+
.PHONY: clean default
## Special targets to build a program from multiple source files
@@ -20,7 +25,7 @@ LLINK = $(TOOLS)/link
LLCFLAGS =
LCC = /home/vadve/lattner/cvs/gcc_install/bin/gcc
-LCFLAGS = -DTORONTO -O2 $(LOCAL_CFLAGS) -Wall
+LCFLAGS = -O2 $(LOCAL_CFLAGS) -Wall
LLCLIB = $(LEVEL)/test/runtime.o
LIBS = $(LLCLIB) $(LOCAL_LIBS)
@@ -58,7 +63,8 @@ clean :
$(LLC) -f -trace $(LLCFLAGS) $<
%.o: %.c
- $(LCC) $(LCFLAGS) -c $<
+ $(LCC) $(LCFLAGS) -S -o $*.ll $<
+ $(LAS) -o $@ $*.ll
%.bc: %.ll
$(LAS) -f $<
diff --git a/test/Makefile.tests b/test/Makefile.tests
index c9f1e38..7e54ccc 100644
--- a/test/Makefile.tests
+++ b/test/Makefile.tests
@@ -1,3 +1,8 @@
+## -*-Makefile-*-
+##------------------------------------------------------------------------
+## Common rules for generating, linking, and compiling via LLVM.
+##------------------------------------------------------------------------
+
.PHONY: clean default
## Special targets to build a program from multiple source files
@@ -20,7 +25,7 @@ LLINK = $(TOOLS)/link
LLCFLAGS =
LCC = /home/vadve/lattner/cvs/gcc_install/bin/gcc
-LCFLAGS = -DTORONTO -O2 $(LOCAL_CFLAGS) -Wall
+LCFLAGS = -O2 $(LOCAL_CFLAGS) -Wall
LLCLIB = $(LEVEL)/test/runtime.o
LIBS = $(LLCLIB) $(LOCAL_LIBS)
@@ -58,7 +63,8 @@ clean :
$(LLC) -f -trace $(LLCFLAGS) $<
%.o: %.c
- $(LCC) $(LCFLAGS) -c $<
+ $(LCC) $(LCFLAGS) -S -o $*.ll $<
+ $(LAS) -o $@ $*.ll
%.bc: %.ll
$(LAS) -f $<