Home | History | Annotate | Line # | Download | only in genassym
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2005/05/30 15:51:36 thorpej Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 COMPATOBJ!=	cd ${.CURDIR}/../compat && ${PRINTOBJDIR}
      6 .-include	"${COMPATOBJ}/defs.mk"
      7 
      8 TIMESTAMP=	${TOOLDIR}/bin/${_TOOL_PREFIX}genassym
      9 
     10 CLEANFILES+=	genassym
     11 
     12 .include <bsd.hostprog.mk>
     13 
     14 install: ${TIMESTAMP}
     15 ${TIMESTAMP}: genassym
     16 	${HOST_INSTALL_FILE} -m ${BINMODE} ${.ALLSRC} ${.TARGET}
     17 
     18 genassym: genassym.sh
     19 	sed -e "s,/bin/sh,${HOST_BSHELL},g" < ${.ALLSRC} > ${.TARGET}
     20 
     21 realall: genassym
     22