From: ceriel Date: Fri, 16 Jan 1987 16:50:50 +0000 (+0000) Subject: new version for generating .o files X-Git-Tag: release-5-5~4984 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=08cc79e513832c2c71dde53ba1ad6acca678f28c;p=ack.git new version for generating .o files --- diff --git a/mach/ns/libem/Makefile b/mach/ns/libem/Makefile index 7c0ddba44..78211c407 100644 --- a/mach/ns/libem/Makefile +++ b/mach/ns/libem/Makefile @@ -1,17 +1,28 @@ # $Header$ -install: - ../../install tail_em.a tail_em - ../../install end.s tail_em.vend +MACH=ns -cmp: - -../../compare tail_em.a tail_em - -../../compare end.s end_em +all: libem_o.a end.o -clean : +install: all + ../../install libem_o.a tail_em + ../../install end.o end_em +cmp: all + -../../compare libem_o.a tail_em + -../../compare end.o end_em + +end.o: end.s + $(MACH) -I../../../h -c end.s + +libem_o.a: libem_s.a + ASAR=aal ; export ASAR ;\ + march . libem_o.a + +clean: + rm -f *.o opr : - make pr | opr + make pr | opr pr: - @arch pv tail_em.a | pr -h `pwd`/tail_em.a - @pr `pwd`/end.s + @arch pv libem_s.a | pr -h `pwd`/libem_s.a + @pr `pwd`/end.s