make -> mk

This commit is contained in:
rsc 2003-11-23 18:10:54 +00:00
parent bc7cb1a15a
commit 5c34ff9e1c
10 changed files with 365 additions and 0 deletions

44
src/mkone Normal file
View file

@ -0,0 +1,44 @@
PROG=$O.$TARG
all:V: $PROG
$O.$TARG: $OFILES $LIB
$LD -o $target $prereq $LDFLAGS
%.$O: $HFILES # don't combine with following %.$O rules
%.$O: %.c
$CC $CFLAGS $stem.c
%.$O: %.s
$AS $AFLAGS $stem.s
y.tab.h y.tab.c: $YFILES
$YACC $YFLAGS $prereq
%.install:V: $BIN/%
$BIN/%: $O.%
$INSTALL $O.$stem $BIN/$stem
%.installall:V:
for (objtype in $CPUS)
mk $stem.install
install:V: $TARG.install
installall:V:
for(objtype in $CPUS)
mk $MKFLAGS install
nuke:V:
rm -f *.[$OS] y.tab.? y.debug y.output [$OS].* *.acid $TARG $NUKEFILES
clean:V:
rm -f *.[$OS] y.tab.? y.debug y.output [$OS].* $TARG $CLEANFILES
%.clean:V:
rm -f $stem.[$OS] [$OS].$stem $stem.acid $stem
%.acid: %.$O $HFILES
$CC $CFLAGS -a $stem.c >$target