]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/ngctl/Makefile
Fix multiple denial of service in ntpd.
[FreeBSD/FreeBSD.git] / usr.sbin / ngctl / Makefile
1 # $FreeBSD$
2 # $Whistle: Makefile,v 1.3 1999/01/16 00:10:11 archie Exp $
3
4 .include <src.opts.mk>
5
6 PROG=   ngctl
7 MAN=    ngctl.8
8 SRCS=   main.c mkpeer.c config.c connect.c dot.c name.c show.c list.c \
9         msg.c debug.c shutdown.c rmhook.c status.c types.c write.c
10 WARNS?= 3
11
12 .if defined(RELEASE_CRUNCH)
13 NGCTL_NO_LIBEDIT=
14 .endif
15
16 .if ${MK_LIBTHR} == "no"
17 NGCTL_NO_LIBEDIT=
18 .endif
19
20 LIBADD= netgraph
21
22 .if !defined(NGCTL_NO_LIBEDIT)
23 CFLAGS+= -DEDITLINE
24 LIBADD+=        edit pthread
25 .endif
26
27 .include <bsd.prog.mk>