diff --git a/mach/6500/dl/Makefile b/mach/6500/dl/Makefile new file mode 100644 index 00000000..198cae5d --- /dev/null +++ b/mach/6500/dl/Makefile @@ -0,0 +1,19 @@ +CFLAGS=-O + +dl: dl.o + cc -o dl -n dl.o + +install: dl + ../../install dl + +cmp: dl + -../../compare dl + +opr: + make pr | opr + +pr: + @pr `pwd`/dl.c + +clean: + -rm -f *.o *.old dl diff --git a/mach/6500/libem/Makefile b/mach/6500/libem/Makefile index 2806a0b6..348ef247 100644 --- a/mach/6500/libem/Makefile +++ b/mach/6500/libem/Makefile @@ -1,3 +1,7 @@ all: - cp head.s ../lib/em_head - cp e.a ../lib/em_tail + cp head.s em_head + ../../install em_head + rm -f em_head + cp e.a em_tail + -../../compare em_tail + rm -f em_head em_tail