blob: bb1d1e0a3e2839560249eea1a6fc3c2f6560e43a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $OpenBSD: Makefile,v 1.1 2018/07/10 16:39:54 florian Exp $
PROG= rad
SRCS= control.c engine.c frontend.c log.c rad.c parse.y printconf.c
MAN= rad.8 rad.conf.5
#DEBUG= -g -DDEBUG=3 -O0
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
YFLAGS=
LDADD+= -levent -lutil
DPADD+= ${LIBEVENT} ${LIBUTIL}
.include <bsd.prog.mk>
|