Home | History | Annotate | Line # | Download | only in ipnat
Makefile revision 1.1
      1  1.1  christos #	$NetBSD: Makefile,v 1.1 2012/03/23 21:29:45 christos Exp $
      2  1.1  christos 
      3  1.1  christos PROG=		ipnat
      4  1.1  christos SRCS=		ipnat.c ipnat_y.c ipnat_l.c
      5  1.1  christos MAN=		ipnat.8 ipnat.4 ipnat.5
      6  1.1  christos MLINKS=		ipnat.5 ipnat.conf.5
      7  1.1  christos CPPFLAGS+=	-I.
      8  1.1  christos 
      9  1.1  christos DPSRCS+=	ipnat_l.h ipnat_y.h
     10  1.1  christos 
     11  1.1  christos CLEANFILES+=	ipnat_y.c ipnat_y.h
     12  1.1  christos CLEANFILES+=	ipnat_l.c ipnat_l.h
     13  1.1  christos 
     14  1.1  christos ipnat_y.c: ipnat_y.y
     15  1.1  christos 	${_MKTARGET_CREATE}
     16  1.1  christos 	${YACC} -d ${.ALLSRC}
     17  1.1  christos 	${TOOL_SED} -e 's/yy/ipnat_yy/g' \
     18  1.1  christos 	    -e 's/y.tab.c/ipnat_y.c/' \
     19  1.1  christos 	    -e s/\"ipnat_y.y\"/\"..\\/tools\\/ipnat_y.y\"/ \
     20  1.1  christos 	    y.tab.c > ${.TARGET}
     21  1.1  christos 	${TOOL_SED} -e 's/yy/ipnat_yy/g' \
     22  1.1  christos 	    -e 's/y.tab.h/ipnat_y.h/' \
     23  1.1  christos 	    y.tab.h > ${.TARGET:.c=.h}
     24  1.1  christos 
     25  1.1  christos ipnat_y.h: ipnat_y.c
     26  1.1  christos 
     27  1.1  christos ipnat_l.c: lexer.c
     28  1.1  christos 	${_MKTARGET_CREATE}
     29  1.1  christos 	${TOOL_SED} -e 's/yy/ipnat_yy/g' \
     30  1.1  christos 	    -e 's/y.tab.h/ipnat_y.h/' \
     31  1.1  christos 	    -e 's/lexer.h/ipnat_l.h/' \
     32  1.1  christos 	    ${.ALLSRC} > ${.TARGET}
     33  1.1  christos 
     34  1.1  christos ipnat_l.h: lexer.h
     35  1.1  christos 	${_MKTARGET_CREATE}
     36  1.1  christos 	${TOOL_SED} -e 's/yy/ipnat_yy/g' \
     37  1.1  christos 	    ${.ALLSRC} > ${.TARGET}
     38  1.1  christos 
     39  1.1  christos .include <bsd.prog.mk>
     40