Changeset 1208


Ignore:
Timestamp:
Feb 9, 2004, 1:24:46 AM (21 years ago)
Author:
bird
Message:

...

Location:
trunk/testcase
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/testcase/Makefile

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1207 r1208  
     1# $Id$
    12
     3SUBDIRS ?= weak optlink                 
     4EXCLUDE ?= test "475.gmk" != "$$gmk" && test "throw.gmk" != "$$gmk"
    25
    36default: all
     
    69        for gmk in $(wildcard *.gmk); \
    710        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 $@; \
    922                then true;      \
    1023                else exit 8; \
  • TabularUnified trunk/testcase/optlink/Makefile

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1207 r1208  
     1# $Id$
     2
     3SUBDIRS =
     4EXCLUDE = true
     5
    16include ../makefile
     7
  • TabularUnified trunk/testcase/weak/Makefile

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.2
    r1207 r1208  
     1# $Id$
    12
     3SUBDIRS =
     4EXCLUDE = true
     5OPT_MAKE = CFLAGS=-Zomf
    26
    3 default: all
     7include ../makefile
    48
    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         done
    13        
    14 cleanfast:     
    15         rm *.o *.obj *.exe *.map
    16        
Note: See TracChangeset for help on using the changeset viewer.