all: remove $OBJTYPE from build

Now that we assume pthreads, the only assembly
left is in libmp and libsec.
We only ever added assembly for 386.
The portable C code is fine for plan9port.
This commit is contained in:
Russ Cox 2020-12-30 07:39:16 -05:00
parent 0bd1478342
commit 99dee78c2d
56 changed files with 41 additions and 1291 deletions

View file

@ -2,22 +2,22 @@
# and also valid shell input for ../dist/buildmk
SYSNAME=`uname`
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;
s;.*aarch64.*;arm64;
s;.*arm64.*;arm64;
'`
# 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;
# s;.*aarch64.*;arm64;
# s;.*arm64.*;arm64;
# '`
INSTALL=`[ $(uname) = AIX ] && echo installbsd || echo install`