]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.bin/host/Makefile
ping(8): Fix a mandoc related issue
[FreeBSD/FreeBSD.git] / usr.bin / host / Makefile
1 # $FreeBSD$
2
3 LDNSDIR=        ${SRCTOP}/contrib/ldns
4 LDNSHOSTDIR=    ${SRCTOP}/contrib/ldns-host
5
6 .PATH:          ${LDNSHOSTDIR}
7
8 PROG=           host
9 SRCS=           ldns-host.c
10 MAN=            host.1
11 CLEANFILES+=    host.1
12
13 host.1: ldns-host.1
14         sed -e 's/ldns-//gI' <${.ALLSRC} >${.TARGET} || \
15                 (rm -rf ${.TARGET} ; false)
16
17 CFLAGS+=        -I${LDNSDIR}
18 LIBADD=         ldns
19
20 .include <bsd.prog.mk>