- use an external Makefile.config for the test/Makefile that is not comitted to cvs...
authorMatthias Braun <matze@braunis.de>
Thu, 1 Jun 2006 09:14:35 +0000 (09:14 +0000)
committerMatthias Braun <matze@braunis.de>
Thu, 1 Jun 2006 09:14:35 +0000 (09:14 +0000)
ir/be/test/.cvsignore
ir/be/test/Makefile
ir/be/test/Makefile.config.example [new file with mode: 0644]

index 2e8f61c..20cd389 100644 (file)
@@ -10,3 +10,4 @@
 OUT.*
 gcc
 firm
+Makefile.config
\ No newline at end of file
index 942be40..8a2f8b8 100644 (file)
@@ -1,17 +1,5 @@
-# Configuration section
-EDG=edg
-GCC=gcc
-
-GCC_CFLAGS=-O3 -g
-EDG_CFLAGS=-f win32 -b ra-chordal-spill=morgan --c -Ic:\\devstudio\\include
-
-EXCLUDE=bf_localinit.c bf_store.c calls.c compress95.c convtest.c \
-       fe_bug.c gnu_def.c harness.c if.c psi_test.c
-SOURCES=$(filter-out $(EXCLUDE), $(wildcard *.c))
-GCCEXES=$(addprefix gcc/, $(addsuffix .exe, $(basename $(SOURCES))))
-FIRMEXES=$(addprefix firm/, $(addsuffix .exe, $(basename $(SOURCES))))
-FIRMASSEMBLERS=$(addprefix firm/, $(addsuffix .s, $(basename $(SOURCES))))
-DONTCOMPARE = XXEndless.c
+include Makefile.config
+
 COMPARES = $(addprefix compare_, $(filter-out $(DONTCOMPARE), $(SOURCES)))
 
 .PHONY: all clean firm gcc compare
diff --git a/ir/be/test/Makefile.config.example b/ir/be/test/Makefile.config.example
new file mode 100644 (file)
index 0000000..8e0118c
--- /dev/null
@@ -0,0 +1,15 @@
+# Configuration section
+EDG=edg
+GCC=gcc
+
+GCC_CFLAGS=-O3 -g
+EDG_CFLAGS=-f win32 -b ra-chordal-spill=morgan --c -Ic:\\devstudio\\include
+
+EXCLUDE=bf_localinit.c bf_store.c calls.c compress95.c convtest.c \
+       fe_bug.c gnu_def.c harness.c if.c psi_test.c
+SOURCES=$(filter-out $(EXCLUDE), $(wildcard *.c))
+GCCEXES=$(addprefix gcc/, $(addsuffix .exe, $(basename $(SOURCES))))
+FIRMEXES=$(addprefix firm/, $(addsuffix .exe, $(basename $(SOURCES))))
+FIRMASSEMBLERS=$(addprefix firm/, $(addsuffix .s, $(basename $(SOURCES))))
+DONTCOMPARE = XXEndless.c
+C