Home | History | Annotate | Line # | Download | only in mkdep
Makefile revision 1.2
      1 #	from: @(#)Makefile	5.4 (Berkeley) 2/19/91
      2 #	$Id: Makefile,v 1.2 1993/07/31 15:19:07 mycroft Exp $
      3 
      4 MAN1=	mkdep.0
      5 
      6 .if (${MACHINE} == "hp300" || ${MACHINE} == "i386")
      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