*** empty log message ***
This commit is contained in:
parent
1092994a09
commit
fd0066f3a6
3 changed files with 39 additions and 0 deletions
2
mach/vax4/libcc/compmodule
Executable file
2
mach/vax4/libcc/compmodule
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||||
|
echo `basename $1 $2`.o
|
35
mach/vax4/libem/Makefile
Normal file
35
mach/vax4/libem/Makefile
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
TAILSRC=tail_em.a
|
||||||
|
l=../lib
|
||||||
|
|
||||||
|
install: head_em tail_em
|
||||||
|
cp head_em $l/head_em
|
||||||
|
cp tail_em $l/tail_em
|
||||||
|
-rm -f head_em tail_em
|
||||||
|
|
||||||
|
cmp: head_em tail_em
|
||||||
|
-cmp head_em $l/head_em
|
||||||
|
-cmp tail_em $l/tail_em
|
||||||
|
|
||||||
|
head_em: head_em.s system.h
|
||||||
|
vax4 -c -I../../../h head_em.s
|
||||||
|
mv head_em.o head_em
|
||||||
|
|
||||||
|
tail_em: $(TAILSRC) system.h
|
||||||
|
arch x $(TAILSRC) ;\
|
||||||
|
ALL= ; \
|
||||||
|
for i in `arch t $(TAILSRC)` ; do \
|
||||||
|
BN=`basename $$i .s`.o ; \
|
||||||
|
vax4 -I../../../h -c $$i ; \
|
||||||
|
RM="$$RM $$i" ; \
|
||||||
|
ALL="$$ALL $$BN" ; \
|
||||||
|
done ; \
|
||||||
|
ar r tail_em $$ALL ; rm -f $$RM $$ALL
|
||||||
|
|
||||||
|
clean:
|
||||||
|
-rm -f `arch t $(TAILSRC)` *.old *.o
|
||||||
|
|
||||||
|
opr:
|
||||||
|
make pr | opr
|
||||||
|
|
||||||
|
pr:
|
||||||
|
@(pr head_em.s ; arch pv $(TAILSRC) | pr -h "vax4/libem" )
|
2
mach/vax4/libpc/compmodule
Executable file
2
mach/vax4/libpc/compmodule
Executable file
|
@ -0,0 +1,2 @@
|
||||||
|
${MACH?} -I../../../h ${MACHFL?} $1 1>&2
|
||||||
|
echo `basename $1 $2`.o
|
Loading…
Add table
Reference in a new issue