mirror of
https://github.com/openbsd/src.git
synced 2024-12-22 07:27:59 -08:00
0ef98bd3f3
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@
17 lines
405 B
Makefile
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>
|