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