From: keie Date: Fri, 26 Oct 1984 11:01:40 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: release-5-5~6008 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=fd0066f3a6c5287637d4798944ed339fda2ab05b;p=ack.git *** empty log message *** --- diff --git a/mach/vax4/libcc/compmodule b/mach/vax4/libcc/compmodule new file mode 100755 index 000000000..491f6d251 --- /dev/null +++ b/mach/vax4/libcc/compmodule @@ -0,0 +1,2 @@ +${MACH?} -I../../../h ${MACHFL?} $1 1>&2 +echo `basename $1 $2`.o diff --git a/mach/vax4/libem/Makefile b/mach/vax4/libem/Makefile new file mode 100644 index 000000000..f2f984356 --- /dev/null +++ b/mach/vax4/libem/Makefile @@ -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" ) diff --git a/mach/vax4/libpc/compmodule b/mach/vax4/libpc/compmodule new file mode 100755 index 000000000..491f6d251 --- /dev/null +++ b/mach/vax4/libpc/compmodule @@ -0,0 +1,2 @@ +${MACH?} -I../../../h ${MACHFL?} $1 1>&2 +echo `basename $1 $2`.o