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