Makefile revision 1.2
11.2Schristos# $NetBSD: Makefile,v 1.2 2014/04/29 01:21:02 christos Exp $ 21.2Schristos 31.2Schristos.include <bsd.own.mk> 41.1Sriastrad 51.1SriastradPROG= getaddrinfo 61.1Sriastrad 71.1SriastradDPADD+= ${LIBUTIL} 81.1SriastradLDADD+= -lutil 91.1Sriastrad 101.1SriastradWARNS= 5 111.1Sriastrad 121.1SriastradSYS_SOCKET_H?= ${NETBSDSRCDIR}/sys/sys/socket.h 131.1Sriastrad 141.1SriastradCPPFLAGS+= -I. 151.1SriastradDPSRCS+= tables.h 161.1SriastradCLEANFILES+= tables.h 171.1Sriastradtables.h: tables.awk ${SYS_SOCKET_H} 181.1Sriastrad ${_MKTARGET_CREATE} 191.1Sriastrad ${TOOL_AWK} -f ${.ALLSRC} > ${.TARGET}.tmp \ 201.1Sriastrad && mv -f -- ${.TARGET}.tmp ${.TARGET} 211.1Sriastrad 221.1Sriastrad.include <bsd.prog.mk> 23