From 08cc79e513832c2c71dde53ba1ad6acca678f28c Mon Sep 17 00:00:00 2001 From: ceriel Date: Fri, 16 Jan 1987 16:50:50 +0000 Subject: [PATCH] new version for generating .o files --- mach/ns/libem/Makefile | 31 +++++++++++++++++++++---------- 1 file changed, 21 insertions(+), 10 deletions(-) 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 -- 2.34.1