blob: 4c890ed43a5a9ce02fc6a7062f06489251e70146 (
plain)
1
2
3
4
5
6
7
8
9
10
|
../bin/mk: mkmk.sh
SYSNAME=`uname` export SYSNAME; \
OBJTYPE=`uname -m | sed 's;i.86;386;; s;/.*;;; s; ;;g; s/PowerMacintosh/power/; s/ppc64/power/g; s/ppc/power/g'` export OBJTYPE; \
PATH=`pwd`/../bin:$$PATH export PATH; \
PLAN9=`pwd`/.. export PLAN9; \
sh -x mkmk.sh
all clean install nuke: ../bin/mk
mk $@
|