xref: /openbsd-src/usr.sbin/dhcrelay/Makefile (revision a4c1d3a0c10a43cf0e67b323843e0c225d662636)
1# $OpenBSD: Makefile,v 1.4 2017/04/05 14:43:14 reyk Exp $
2
3.include <bsd.own.mk>
4
5SRCS=	dhcrelay.c dispatch.c log.c bpf.c packet.c
6PROG=	dhcrelay
7MAN=	dhcrelay.8
8
9CFLAGS+=-Wall
10CFLAGS+=-Wstrict-prototypes -Wmissing-prototypes
11CFLAGS+=-Wmissing-declarations
12CFLAGS+=-Wshadow -Wpointer-arith -Wcast-qual
13CFLAGS+=-Wsign-compare
14
15.include <bsd.prog.mk>
16