mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
37d81a2915
Change-Id: I0af67bc44c7bb62a8e5a47eac597367f521f1c11 Reviewed-on: https://plan9port-review.googlesource.com/1210 Reviewed-by: Russ Cox <rsc@google.com>
21 lines
482 B
Bash
Executable file
21 lines
482 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# run this in the src directory
|
|
SYSNAME=`uname` export SYSNAME
|
|
OBJTYPE=`(uname -m -p 2>/dev/null || uname -m) | 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;.*Power.Macintosh.*;power;g;
|
|
s;.*macppc.*;power;g;
|
|
s;.*mips.*;mips;g;
|
|
s;.*ppc64.*;power;g;
|
|
s;.*ppc.*;power;g;
|
|
s;.*alpha.*;alpha;g;
|
|
s;.*sun4u.*;sun4u;g;
|
|
'` export OBJTYPE
|
|
sh -x mkmk.sh
|