1# $OpenBSD: Makefile,v 1.3 2007/12/07 17:17:01 reyk Exp $ 2 3.PATH: ${.CURDIR}/../relayd 4 5PROG= relayctl 6SRCS= buffer.c imsg.c log.c relayctl.c parser.c 7 8MAN= relayctl.8 9 10CFLAGS+= -Wall -Werror -I${.CURDIR} -I${.CURDIR}/../relayd 11CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes 12CFLAGS+= -Wmissing-declarations 13CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual 14CFLAGS+= -Wsign-compare -Wbounded 15 16.include <bsd.prog.mk> 17