diff options
Diffstat (limited to 'usr.bin/mkdep/Makefile')
-rw-r--r-- | usr.bin/mkdep/Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/usr.bin/mkdep/Makefile b/usr.bin/mkdep/Makefile new file mode 100644 index 0000000..61f62fd --- /dev/null +++ b/usr.bin/mkdep/Makefile @@ -0,0 +1,16 @@ +# @(#)Makefile 8.1 (Berkeley) 6/6/93 + +MAN1= mkdep.0 + +.if (${MACHINE} == "hp300" || ${MACHINE} == "i386" || \ + ${MACHINE} == "mips" || ${MACHINE} == "sparc") +beforeinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/mkdep.gcc.sh ${DESTDIR}/usr/bin/mkdep +.else +beforeinstall: + install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + ${.CURDIR}/mkdep.sh ${DESTDIR}/usr/bin/mkdep +.endif + +.include <bsd.prog.mk> |