New installation mechanism

This commit is contained in:
ceriel 1991-08-28 14:14:44 +00:00
parent bbb4d40669
commit dab686f5e0
2 changed files with 86 additions and 1 deletions

View file

@ -2,7 +2,7 @@ copyright
deffile
em.c
em.1
Makefile
proto.make
mloop0
mloop1
mloop2

View file

@ -0,0 +1,85 @@
# $Header$
#PARAMS do not remove this line!
SRC_DIR = $(SRC_HOME)/mach/mantra/int
INTS=em2_t--- em2_---- em2_t-cp em2_t-c- em2_t--p \
em4_t--- em4_---- em4_t-cp em4_t-c- em4_t--p
P = $(SRC_DIR)/mloop
FILES=$(SRC_DIR)/deffile $P0 $P1 $P2 $P3 $P4 $P5 $P6 $P7 $P8 $P9 $Pa $Pb $Pc
CPP=$(UTIL_HOME)/lib.bin/cpp
b=$(TARGET_HOME)/lib.bin/em
CFLAGS=-I$(TARGET_HOME)/h -I$(TARGET_HOME)/config -O
FLTRAP=
all: $(INTS) em
em: em.c
$(CC) $(CFLAGS) -o em em.c
tmp.s: $(FILES)
cat $(FILES) > tmp.s
em2_t---: tmp.s compile con_float.o
./compile -o em2_t--- -P $(FLTRAP) -Dopfreq=0 -Dlast=1 -Dcount=0 -Dtest=1 -Dflow=0 -Dprof=0 tmp.s con_float.o
em2_----: tmp.s compile con_float.o
./compile -o em2_---- -P $(FLTRAP) -Dopfreq=0 -Dlast=0 -Dcount=0 -Dtest=0 -Dflow=0 -Dprof=0 tmp.s con_float.o
em2_t-cp: tmp.s compile con_float.o
./compile -o em2_t-cp -P $(FLTRAP) -Dopfreq=0 -Dlast=1 -Dcount=1 -Dtest=1 -Dflow=0 -Dprof=1 tmp.s con_float.o
em2_t-c-: tmp.s compile con_float.o
./compile -o em2_t-c- -P $(FLTRAP) -Dopfreq=0 -Dlast=1 -Dcount=1 -Dtest=1 -Dflow=0 -Dprof=0 tmp.s con_float.o
em2_t--p: tmp.s compile con_float.o
./compile -o em2_t--p -P $(FLTRAP) -Dopfreq=0 -Dlast=1 -Dcount=0 -Dtest=1 -Dflow=0 -Dprof=1 tmp.s con_float.o
em4_t---: tmp.s compile con_float.o
./compile -o em4_t--- -P $(FLTRAP) -Dlword -Dopfreq=0 -Dlast=1 -Dcount=0 -Dtest=1 -Dflow=0 -Dprof=0 tmp.s con_float.o
em4_----: tmp.s compile con_float.o
./compile -o em4_---- -P $(FLTRAP) -Dlword -Dopfreq=0 -Dlast=0 -Dcount=0 -Dtest=0 -Dflow=0 -Dprof=0 tmp.s con_float.o
em4_t-cp: tmp.s compile con_float.o
./compile -o em4_t-cp -P $(FLTRAP) -Dlword -Dopfreq=0 -Dlast=1 -Dcount=1 -Dtest=1 -Dflow=0 -Dprof=1 tmp.s con_float.o
em4_t-c-:tmp.s compile con_float.o
./compile -o em4_t-c- -P $(FLTRAP) -Dlword -Dopfreq=0 -Dlast=1 -Dcount=1 -Dtest=1 -Dflow=0 -Dprof=0 tmp.s con_float.o
em4_t--p: tmp.s compile con_float.o
./compile -o em4_t--p -P $(FLTRAP) -Dlword -Dopfreq=0 -Dlast=1 -Dcount=0 -Dtest=1 -Dflow=0 -Dprof=1 tmp.s con_float.o
con_float.o: con_float.c
case `ack_sys` in m68k2|pmds) \
acc -I$(SRC_HOME)/mach -mm68k4 -c -L -O con_float.c;; \
*) acc -c -I$(SRC_HOME)/mach -L -O con_float.c;; \
esac
compile: Makefile
case `ack_sys` in sun*) MACH=`ack_sys`; AS=-Ras=$(UTIL_HOME)/lib.bin/m68k2/as;; pmds*) MACH=pmds4;; \
m68_sysV_0) MACH=mantra;; \
*) MACH=m68k4;; \
esac ; echo $$MACH $$AS -r.c -.m -fp '$$*' > compile; chmod +x compile
install: all
-mkdir $b24 $b44
ls em2_???? | sed 's:em2_\(.*\):cp & $b24/em_\1:' | sh
ls em4_???? | sed 's:em4_\(.*\):cp & $b44/em_\1:' | sh
cp em $(TARGET_HOME)/bin/em
cp em.1 $(TARGET_HOME)/man/em.1
cmp: all
-ls em2_???? | sed 's:em2_\(.*\):cmp & $b24/em_\1:' | sh
-ls em4_???? | sed 's:em4_\(.*\):cmp & $b44/em_\1:' | sh
-cmp em $(TARGET_HOME)/bin/em
-cmp em.1 $(TARGET_HOME)/man/em.1
clean:
-rm -f *.o *.old a.out em tmp.s $(INTS) compile
opr:
make pr | opr
pr:
@pr $(SRC_DIR)/proto.make $(FILES)