mirror of
https://github.com/9fans/plan9port.git
synced 2025-01-12 11:10:07 +00:00
17 lines
296 B
Bash
Executable file
17 lines
296 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# run this in the src directory
|
|
SYSNAME=`uname` export SYSNAME
|
|
OBJTYPE=`uname -m | sed '
|
|
s;i.86;386;;
|
|
s;i86pc;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
|
|
|