mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
21 lines
230 B
Makefile
21 lines
230 B
Makefile
LIBS=\
|
|
lib9\
|
|
libbio\
|
|
libdraw\
|
|
libfmt\
|
|
libframe\
|
|
libregexp\
|
|
libthread\
|
|
libutf\
|
|
|
|
CMDS=\
|
|
cmd/mk\
|
|
cmd/sam\
|
|
cmd/samterm\
|
|
|
|
all clean install nuke:
|
|
for i in $(LIBS) $(CMDS); \
|
|
do \
|
|
(echo $$i; cd $$i; $(MAKE) $@); \
|
|
done
|
|
|