source: trunk/testcase/Makefile@ 2013

Last change on this file since 2013 was 1208, checked in by bird, 22 years ago

...

  • Property cvs2svn:cvs-rev set to 1.2
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 488 bytes
Line 
1# $Id: Makefile 1208 2004-02-09 00:24:46Z bird $
2
3SUBDIRS ?= weak optlink
4EXCLUDE ?= test "475.gmk" != "$$gmk" && test "throw.gmk" != "$$gmk"
5
6default: all
7
8clean all check distclean install:
9 for gmk in $(wildcard *.gmk); \
10 do \
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 $@; \
22 then true; \
23 else exit 8; \
24 fi; \
25 done
26
27cleanfast:
28 rm *.o *.obj *.exe *.map
29
Note: See TracBrowser for help on using the repository browser.