blob: 05f3c244475534b4f5755023f4b86f2de8a40e20 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# $NetBSD: Makefile,v 1.2 2010/12/05 09:09:39 mrg Exp $
.include <bsd.own.mk>
.PATH: ${.CURDIR}/../dist
SCRIPTSDIR=/usr/bin
SCRIPTS=pcap-config
MAN=pcap-config.1
pcap-config: pcap-config.in
@rm -f ${.TARGET}
${TOOL_SED} -e 's,@libdir@,/usr/lib,g' \
-e 's,@includedir@,/usr/include,g' \
-e 's,@LIBS@,,g' < ${.ALLSRC} > ${.TARGET}
chmod a+x ${.TARGET}
CLEANFILES+= pcap-config
NOPROG=
.include <bsd.prog.mk>
|