diff options
Diffstat (limited to 'sys/arch/pmax/boot/Makefile')
-rw-r--r-- | sys/arch/pmax/boot/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sys/arch/pmax/boot/Makefile b/sys/arch/pmax/boot/Makefile new file mode 100644 index 00000000000..3396f64e334 --- /dev/null +++ b/sys/arch/pmax/boot/Makefile @@ -0,0 +1,22 @@ +# $OpenBSD: Makefile,v 1.1 1998/04/02 19:57:34 maja Exp $ + +NOPROG= +NOMAN= +UUDECODE=/usr/bin/uudecode +CLEANFILES+=bootrz rzboot + +all: bootrz rzboot + +bootrz: bootrz.uu + @echo "Create ${.TARGET} from ${.ALLSRC}" + @$(UUDECODE) ${.ALLSRC} + +rzboot: rzboot.uu + @echo "Create ${.TARGET} from ${.ALLSRC}" + @$(UUDECODE) ${.ALLSRC} + +install: bootrz rzboot + $(INSTALL) -c -o ${BINOWN} -g ${BINGRP} -m 644 ${.ALLSRC} \ + ${DESTDIR}/usr/mdec + +.include <bsd.prog.mk> |