mirror of https://github.com/F-Stack/f-stack.git
22 lines
420 B
Makefile
22 lines
420 B
Makefile
# $FreeBSD$
|
|
# $Whistle: Makefile,v 1.3 1999/01/16 00:10:11 archie Exp $
|
|
|
|
TOPDIR?=${CURDIR}/../..
|
|
include ${TOPDIR}/tools/opts.mk
|
|
|
|
PROG= ngctl
|
|
MAN= ngctl.8
|
|
SRCS= main.c mkpeer.c config.c connect.c dot.c name.c show.c list.c \
|
|
msg.c debug.c shutdown.c rmhook.c status.c types.c write.c
|
|
WARNS?= 3
|
|
|
|
LIBADD= netgraph
|
|
|
|
ifneq (${MK_HAVE_LIBEDIT},"no")
|
|
CFLAGS+= -DEDITLINE
|
|
LIBS+= -ledit
|
|
endif
|
|
|
|
include ${TOPDIR}/tools/prog.mk
|
|
|