mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
need this
This commit is contained in:
parent
4a4a4f2681
commit
f5dcf6d9e2
1 changed files with 16 additions and 0 deletions
16
dist/buildmk
vendored
Executable file
16
dist/buildmk
vendored
Executable file
|
@ -0,0 +1,16 @@
|
|||
#!/bin/sh
|
||||
|
||||
# run this in the src directory
|
||||
SYSNAME=`uname` export SYSNAME
|
||||
OBJTYPE=`uname -m | sed '
|
||||
s;i.86;386;;
|
||||
s;amd64;x86_64;;
|
||||
s;/.*;;; s; ;;g;
|
||||
s;armv4l;arm;g;
|
||||
s;PowerMacintosh;power;g;
|
||||
s;macppc;power;g;
|
||||
s;ppc64;power;g;
|
||||
s;ppc;power;g;
|
||||
'` export OBJTYPE
|
||||
sh -x mkmk.sh
|
||||
|
Loading…
Reference in a new issue