1
0
mirror of https://github.com/openbsd/src.git synced 2024-12-22 07:27:59 -08:00
openbsd-src/usr.sbin/eigrpctl/Makefile
benno 0ef98bd3f3 work on making log.c similar in all daemons:
move daemon-local functions into new logmsg.c, and reduce
the (mostly whitespace) differences so that log.c's can be diffed easily.

ok claudio@
2016-09-02 18:00:07 +00:00

17 lines
405 B
Makefile

# $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>