Home | History | Annotate | Line # | Download | only in mkdep
Makefile revision 1.1.1.2
      1 #	@(#)Makefile	8.1 (Berkeley) 6/6/93
      2 
      3 MAN1=	mkdep.0
      4 
      5 .if (${MACHINE} == "hp300" || ${MACHINE} == "i386" || \
      6 	${MACHINE} == "mips" || ${MACHINE} == "sparc")
      7 beforeinstall:
      8 	install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
      9 	    ${.CURDIR}/mkdep.gcc.sh ${DESTDIR}/usr/bin/mkdep
     10 .else
     11 beforeinstall:
     12 	install -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
     13 	    ${.CURDIR}/mkdep.sh ${DESTDIR}/usr/bin/mkdep
     14 .endif
     15 
     16 .include <bsd.prog.mk>
     17