plan9fox/sys/src/mkfile
Ori Bernstein bcfee7b547 revert 8c228a123fa0c6062570964011854302bbf57242: accidental commit
was testing out the git/import tweaks and accidentally
pushed this commit. No comment on whether we want it,
but it definitely wasn't ready for merge.

Oops.
2021-08-22 17:47:38 +00:00

100 lines
1 KiB
Makefile

</$objtype/mkfile
LIBS=\
lib9p\
libString\
libaml\
libauth\
libauthsrv\
libavl\
libbin\
libbio\
libc\
libcomplete\
libcontrol\
libdisk\
libdraw\
libflate\
libfis\
libframe\
libgeometry\
libhtml\
libhttpd\
libip\
liblex\
libjson\
libmach\
libmemdraw\
libmemlayer\
libmp\
libndb\
libplumb\
libregexp\
libsat\
libscribble\
libsec\
libstdio\
libsunrpc\
libthread\
libttf\
libventi\
libdtracy\
CMDS=cmd\
games\
SUBSYS=ape\
/acme\
none:VQ:
echo mk all, install, clean, nuke, release, kernels, or libs
all install clean nuke:VQ:
date
for (i in $LIBS $SUBSYS $CMDS) @{
cd $i
mk $target
}
date
installall:V:
echo "installall not supported"
release:V:
mk nuke
rm -f /$objtype/lib/ape/*.a
rm -f /$objtype/lib/*.a
mk install
mk clean
kernels:V:
for (i in 9 boot) @{
cd $i
mk clean
mk install
mk clean
}
libs:V:
date
for (i in $LIBS) @{
cd $i
mk clean
mk install
mk clean
}
date
cleanlibs:V:
for (i in $LIBS) @{
cd $i
mk clean
}
updatelibs:V:
for (i in $LIBS) @{
cd $i
mk update
}