From: keie Date: Tue, 4 Jun 1985 10:40:50 +0000 (+0000) Subject: Adapted to using the new assembler & linker. X-Git-Tag: release-5-5~5456 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a26a8318da0688c5c1c750756a305526015afe1a;p=ack.git Adapted to using the new assembler & linker. --- diff --git a/mach/m68k2/libem/Makefile b/mach/m68k2/libem/Makefile index 1af8fa3be..15239122d 100644 --- a/mach/m68k2/libem/Makefile +++ b/mach/m68k2/libem/Makefile @@ -1,19 +1,33 @@ -install: - ../../install head_em.s head_em - ../../install libem_s.a tail_em.rt - ../../install end.s end_em.s +# $Header$ +MACH=m68k2 +install: all + ../../install head_em.o head_em + ../../install libem_o.a tail_em.rt + ../../install end.o end_em -cmp: - -../../compare head_em.s head_em - -../../compare libem_s.a tail_em.rt - -../../compare end.s end_em.s +cmp: all + -../../compare head_em.o head_em + -../../compare libem_o.a tail_em.rt + -../../compare end.o end_em -clean : +all: head_em.o libem_o.a end.o +end.o: end.s + $(MACH) -I../../../h -c end.s + +head_em.o: head_em.s + $(MACH) -I../../../h -c head_em.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: - @pr `pwd`/head_em.s - @arch pv libem_s.a | pr -h `pwd`/libem_s.a - @pr `pwd`/end.s + @pr `pwd`/head_em.s + @arch pv libem_s.a | pr -h `pwd`/libem_s.a + @pr `pwd`/end.s