1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 16:42:56 -08:00
openbsd-src/usr.sbin/eigrpctl/Makefile

17 lines
405 B
Makefile
Raw Permalink Normal View History

# $OpenBSD: Makefile,v 1.2 2016/09/02 18:00:07 benno Exp $
.PATH: ${.CURDIR}/../eigrpd
PROG= eigrpctl
SRCS= util.c log.c logmsg.c eigrpctl.c parser.c
CFLAGS+= -Wall
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
CFLAGS+= -I${.CURDIR} -I${.CURDIR}/../eigrpd
LDADD= -lutil
DPADD= ${LIBUTIL}
MAN= eigrpctl.8
.include <bsd.prog.mk>