Changeset 1208
- Timestamp:
- Feb 9, 2004, 1:24:46 AM (21 years ago)
- Location:
- trunk/testcase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/testcase/Makefile ¶
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1207 r1208 1 # $Id$ 1 2 3 SUBDIRS ?= weak optlink 4 EXCLUDE ?= test "475.gmk" != "$$gmk" && test "throw.gmk" != "$$gmk" 2 5 3 6 default: all … … 6 9 for gmk in $(wildcard *.gmk); \ 7 10 do \ 8 if $(MAKE) $@ -f $$gmk; \ 11 echo "doing: $$gmk"; \ 12 if $(EXCLUDE); then \ 13 if $(MAKE) $@ -f $$gmk $(OPT_MAKE); \ 14 then true; \ 15 else exit 8; \ 16 fi; \ 17 fi; \ 18 done 19 for dir in $(SUBDIRS); \ 20 do \ 21 if $(MAKE) -C $$dir $@; \ 9 22 then true; \ 10 23 else exit 8; \ -
Property cvs2svn:cvs-rev
changed from
-
TabularUnified trunk/testcase/optlink/Makefile ¶
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1207 r1208 1 # $Id$ 2 3 SUBDIRS = 4 EXCLUDE = true 5 1 6 include ../makefile 7 -
Property cvs2svn:cvs-rev
changed from
-
TabularUnified trunk/testcase/weak/Makefile ¶
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r1207 r1208 1 # $Id$ 1 2 3 SUBDIRS = 4 EXCLUDE = true 5 OPT_MAKE = CFLAGS=-Zomf 2 6 3 default: all 7 include ../makefile 4 8 5 clean all check distclean install:6 for gmk in $(wildcard *.gmk); \7 do \8 if $(MAKE) $@ -f $$gmk CFLAGS=-Zomf; \9 then true; \10 else exit 8; \11 fi; \12 done13 14 cleanfast:15 rm *.o *.obj *.exe *.map16 -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.