xref: /f-stack/tools/ngctl/Makefile (revision d4a07e70)
1# $FreeBSD$
2# $Whistle: Makefile,v 1.3 1999/01/16 00:10:11 archie Exp $
3
4TOPDIR?=${CURDIR}/../..
5include ${TOPDIR}/tools/opts.mk
6
7PROG=	ngctl
8MAN=	ngctl.8
9SRCS=	main.c mkpeer.c config.c connect.c dot.c name.c show.c list.c \
10	msg.c debug.c shutdown.c rmhook.c status.c types.c write.c
11WARNS?=	3
12
13LIBADD=	netgraph
14
15ifneq (${MK_HAVE_LIBEDIT},"no")
16CFLAGS+= -DEDITLINE
17LIBS+= -ledit
18endif
19
20include ${TOPDIR}/tools/prog.mk
21
22