mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
18 lines
382 B
Bash
Executable file
18 lines
382 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;
|
|
s;.*alpha.*;alpha;g;
|
|
'` export OBJTYPE
|
|
sh -x mkmk.sh
|