[llvm-commits] [test-suite] r51354 - in /test-suite/trunk/External/SPEC/CINT2006: 471.omnetpp/Makefile 473.astar/Makefile 483.xalancbmk/Makefile

Dale Johannesen dalej at apple.com
Tue May 20 15:00:33 PDT 2008


Author: johannes
Date: Tue May 20 17:00:33 2008
New Revision: 51354

URL: http://llvm.org/viewvc/llvm-project?rev=51354&view=rev
Log:
Move LDFLAGS definition after include that uses it.


Modified:
    test-suite/trunk/External/SPEC/CINT2006/471.omnetpp/Makefile
    test-suite/trunk/External/SPEC/CINT2006/473.astar/Makefile
    test-suite/trunk/External/SPEC/CINT2006/483.xalancbmk/Makefile

Modified: test-suite/trunk/External/SPEC/CINT2006/471.omnetpp/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CINT2006/471.omnetpp/Makefile?rev=51354&r1=51353&r2=51354&view=diff

==============================================================================
--- test-suite/trunk/External/SPEC/CINT2006/471.omnetpp/Makefile (original)
+++ test-suite/trunk/External/SPEC/CINT2006/471.omnetpp/Makefile Tue May 20 17:00:33 2008
@@ -56,14 +56,14 @@
             -I$(SPEC_BENCH_DIR)/src               \
             -I$(SPEC_BENCH_DIR)/src/include
 
-include ../../Makefile.spec2006
-
 RUN_OPTIONS      = omnetpp.ini
 STDOUT_FILENAME := omnetpp.log
 
 LDFLAGS = -lstdc++ -lm
 LIBS    = -lm
 
+include ../../Makefile.spec2006
+
 ##===----------------------------------------------------------------------===##
 # Copy the source files to the working directory. Some files may have
 # the same names but are in different directories, so we add a prefix

Modified: test-suite/trunk/External/SPEC/CINT2006/473.astar/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CINT2006/473.astar/Makefile?rev=51354&r1=51353&r2=51354&view=diff

==============================================================================
--- test-suite/trunk/External/SPEC/CINT2006/473.astar/Makefile (original)
+++ test-suite/trunk/External/SPEC/CINT2006/473.astar/Makefile Tue May 20 17:00:33 2008
@@ -8,8 +8,6 @@
 
 FP_TOLERANCE = 0.001
 
-include ../../Makefile.spec2006
-
 ifeq ($(ENDIAN),big)
   CPPFLAGS += -DSPEC_CPU_BIG_ENDIAN
 else
@@ -26,3 +24,6 @@
 
 LDFLAGS = -lstdc++ -lm
 LIBS    = -lm
+
+include ../../Makefile.spec2006
+

Modified: test-suite/trunk/External/SPEC/CINT2006/483.xalancbmk/Makefile
URL: http://llvm.org/viewvc/llvm-project/test-suite/trunk/External/SPEC/CINT2006/483.xalancbmk/Makefile?rev=51354&r1=51353&r2=51354&view=diff

==============================================================================
--- test-suite/trunk/External/SPEC/CINT2006/483.xalancbmk/Makefile (original)
+++ test-suite/trunk/External/SPEC/CINT2006/483.xalancbmk/Makefile Tue May 20 17:00:33 2008
@@ -19,8 +19,6 @@
             -I$(SPEC_BENCH_DIR)/src/xercesc/util/Transcoders/Iconv    \
             -I$(SPEC_BENCH_DIR)/src/xalanc/include
 
-include ../../Makefile.spec2006
-
 ifeq ($(OS),Darwin)
   CPPFLAGS += -DSPEC_CPU_MACOSX
 endif
@@ -35,3 +33,6 @@
 
 LDFLAGS = -lstdc++ -lm
 LIBS    = -lstdc++ -lm
+
+include ../../Makefile.spec2006
+





More information about the llvm-commits mailing list