blob: 438555132ee029b1ca28abb3ec0ce5ed187ff05c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
test:VQ:
echo $t
for(t in $TEST) @{
if(test -d $t)
@{cd $t && mk $MKFLAGS test}
if not
mk $t.test
}
all:VQ:
# nothing
%.test:V: $O.%
./$O.$stem
%.test:V: %.rc
./$stem.rc
%.$O: $HFILES # don't combine with following %.$O rules
%.$O: %.c
$CC $CFLAGS $stem.c
%.$O: %.s
$AS $AFLAGS $stem.s
$O.%:V: %.$O $OFILES $LIB
$LD $LDFLAGS -o $target $prereq
# [$OS].??* avoids file names like 9.h
nuke:V:
rm -f *.[$OS] y.tab.? lex.yy.c y.debug y.output [$OS].??* *.acid $TARG $CLEANFILES
clean:V:
for(t in $TEST)
if(test -d $t)
@{cd $t && mk $MKFLAGS clean}
rm -f *.[$OS] *.a[$OS] y.tab.? lex.yy.c y.debug y.output [$OS].??* $TARG $CLEANFILES
%.clean:V:
rm -f $stem.[$OS] [$OS].$stem $stem.acid $stem
|