Makefile revision 1.1
11.1Sriastrad# $NetBSD: Makefile,v 1.1 2013/09/30 06:19:22 riastradh Exp $ 21.1Sriastrad 31.1SriastradPROG= getaddrinfo 41.1Sriastrad 51.1SriastradDPADD+= ${LIBUTIL} 61.1SriastradLDADD+= -lutil 71.1Sriastrad 81.1SriastradWARNS= 5 91.1Sriastrad 101.1SriastradSYS_SOCKET_H?= ${NETBSDSRCDIR}/sys/sys/socket.h 111.1Sriastrad 121.1SriastradCPPFLAGS+= -I. 131.1SriastradDPSRCS+= tables.h 141.1SriastradCLEANFILES+= tables.h 151.1Sriastradtables.h: tables.awk ${SYS_SOCKET_H} 161.1Sriastrad ${_MKTARGET_CREATE} 171.1Sriastrad ${TOOL_AWK} -f ${.ALLSRC} > ${.TARGET}.tmp \ 181.1Sriastrad && mv -f -- ${.TARGET}.tmp ${.TARGET} 191.1Sriastrad 201.1Sriastrad.include <bsd.prog.mk> 21