fixes #8 http://bitbucket.org/rsc/plan9port/issue/8/ http://groups.google.com/group/plan9port-dev/t/8d1a2362dde4f137 http://codereview.appspot.com/95058
40 lines
571 B
Text
40 lines
571 B
Text
# if you change this, also edit ../dist/buildmk
|
|
SYSNAME=`uname`
|
|
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;
|
|
'`
|
|
|
|
BIN=$PLAN9/bin
|
|
LIBDIR=$PLAN9/lib
|
|
|
|
O=o
|
|
OS=$O
|
|
|
|
CC=9c
|
|
#CC=9r
|
|
LD=9l
|
|
AS=9a
|
|
AR=9ar
|
|
INSTALL=install
|
|
CFLAGS=
|
|
LDFLAGS=
|
|
AFLAGS=
|
|
CLEANFILES=
|
|
NUKEFILES=
|
|
YACC=9 yacc
|
|
LEX=9 lex
|
|
YFLAGS=-d
|
|
LIB=
|
|
SHORTLIB=9
|
|
|
|
<|cat $PLAN9/src/mk.$SYSNAME-$OBJTYPE 2>/dev/null || true
|
|
|