NetBSD/usr.bin/mkdep/Makefile

17 lines
447 B
Makefile

# from: @(#)Makefile 5.4 (Berkeley) 2/19/91
# $Id: Makefile,v 1.2 1993/07/31 15:19:07 mycroft Exp $
MAN1= mkdep.0
.if (${MACHINE} == "hp300" || ${MACHINE} == "i386")
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>