indicate operating system in local.h
This commit is contained in:
parent
d1a390924f
commit
1c6ab039f4
1 changed files with 14 additions and 14 deletions
28
first/first
28
first/first
|
@ -166,22 +166,22 @@ esac
|
||||||
: 'Set the default machine in ../h/local.h'
|
: 'Set the default machine in ../h/local.h'
|
||||||
BM=1
|
BM=1
|
||||||
case `ack_sys` in
|
case `ack_sys` in
|
||||||
pdp_v7) ACM=pdp ; BM=0 ;;
|
pdp_v7) ACM=pdp ; BM=0 ; SYS=V7 ;;
|
||||||
vax_bsd4_1a) ACM=vax4 ;;
|
vax_bsd4_1a) ACM=vax4 ; SYS=BSD4_1 ;;
|
||||||
vax_bsd4_2) ACM=vax4 ;;
|
vax_bsd4_2) ACM=vax4 ; SYS=BSD4_2 ;;
|
||||||
vax_sysV_2) ACM=vax4 ;;
|
vax_sysV_2) ACM=vax4 ; SYS=SYS_5 ;;
|
||||||
pc_ix) ACM=i86 ; BM=0;;
|
pc_ix) ACM=i86 ; BM=0 ; SYS=SYS_5 ;;
|
||||||
xenix3) ACM=xenix3 ; BM=0;;
|
xenix3) ACM=xenix3 ; BM=0; SYS=SYS_5 ;;
|
||||||
sun3) ACM=sun3 ;;
|
sun3) ACM=sun3 ; SYS=BSD4_2 ;;
|
||||||
sun2) ACM=sun2 ;;
|
sun2) ACM=sun2 ; SYS=BSD4_2 ;;
|
||||||
m68_unisoft) ACM=m68k2 ;;
|
m68_unisoft) ACM=m68k2 ; SYS=V7 ;;
|
||||||
m68_sysV_0) ACM=mantra ;;
|
m68_sysV_0) ACM=mantra ; SYS=SYS_5 ;;
|
||||||
m68020) ACM=m68020 ;;
|
m68020) ACM=m68020 ; SYS=SYS_5 ;;
|
||||||
SMALL) ACM=i86 ; BM = 0 ;;
|
SMALL) ACM=i86 ; BM = 0 ; SYS=SYS_5 ;;
|
||||||
*) ACM=m68k2 ;;
|
*) ACM=m68k2 ; SYS=SYS_5 ;;
|
||||||
esac
|
esac
|
||||||
rm -f local.h
|
rm -f local.h
|
||||||
sed -e /ACKM/s/'".*"'/'"'$ACM'"'/ -e /BIGMACH/s/'[01]'/$BM/ < ../h/local.h >local.h
|
sed -e /ACKM/s/'".*"'/'"'$ACM'"'/ -e /BIGMACH/s/'[01]'/$BM/ -e /SYSTEM/s/'^#[ ]*define[ ]*[a-zA-Z_][a-zA-Z0-9_]*'/"# define $SYS"/ < ../h/local.h >local.h
|
||||||
if cmp -s ../h/local.h local.h
|
if cmp -s ../h/local.h local.h
|
||||||
then :
|
then :
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue