mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-24 11:41:58 +00:00
9f8b1dc7fa
fixes #8 http://bitbucket.org/rsc/plan9port/issue/8/ http://groups.google.com/group/plan9port-dev/t/8d1a2362dde4f137 http://codereview.appspot.com/95058
17 lines
360 B
Bash
Executable file
17 lines
360 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# run this in the src directory
|
|
SYSNAME=`uname` export SYSNAME
|
|
OBJTYPE=`uname -m -p | sed '
|
|
s;.*i[3-6]86.*;386;;
|
|
s;.*i86pc.*;386;;
|
|
s;.*amd64.*;x86_64;;
|
|
s;.*x86_64.*;x86_64;;
|
|
s;.*armv.*;arm;g;
|
|
s;.*powerpc.*;power;g;
|
|
s;.*PowerMacintosh.*;power;g;
|
|
s;.*macppc.*;power;g;
|
|
s;.*ppc64.*;power;g;
|
|
s;.*ppc.*;power;g;
|
|
'` export OBJTYPE
|
|
sh -x mkmk.sh
|