[llvm-commits] CVS: llvm/test/Programs/External/SPEC/Makefile.spec
Chris Lattner
lattner at cs.uiuc.edu
Thu May 29 10:19:01 PDT 2003
Changes in directory llvm/test/Programs/External/SPEC:
Makefile.spec updated: 1.3 -> 1.4
---
Log message:
Move bytecode target AFTER include so that it is not the default target!
---
Diffs of the changes:
Index: llvm/test/Programs/External/SPEC/Makefile.spec
diff -u llvm/test/Programs/External/SPEC/Makefile.spec:1.3 llvm/test/Programs/External/SPEC/Makefile.spec:1.4
--- llvm/test/Programs/External/SPEC/Makefile.spec:1.3 Fri May 23 15:07:10 2003
+++ llvm/test/Programs/External/SPEC/Makefile.spec Thu May 29 10:18:30 2003
@@ -34,15 +34,14 @@
PROG := $(BENCH_NAME)
Source := $(wildcard $(SPEC_BENCH_DIR)/src/*.c)
-# Pseudo target to build just the bytecode file.
-bytecode: Output/$(PROG).llvm.bc
-
-
# Disable the default Output/%.out-* targets...
PROGRAMS_HAVE_CUSTOM_RUN_RULES := 1
SourceDir := $(SPEC_BENCH_DIR)/src/
include $(LEVEL)/test/Programs/MultiSource/Makefile.multisrc
+
+# Pseudo target to build just the bytecode file.
+bytecode: Output/$(PROG).llvm.bc
LCCFLAGS := -DSPEC_CPU2000 -O2
CFLAGS := -DSPEC_CPU2000 -O2
More information about the llvm-commits
mailing list