xref: /openbsd/sbin/resolvd/Makefile (revision 771fbea0)
1#	$OpenBSD: Makefile,v 1.1 2021/02/24 18:10:41 florian Exp $
2
3PROG=	resolvd
4SRCS=	resolvd.c
5
6MAN=	resolvd.8
7
8#DEBUG=	-g -DDEBUG=3 -O0
9
10CFLAGS+= -Wall -I${.CURDIR}
11CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
12CFLAGS+= -Wmissing-declarations
13CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
14CFLAGS+= -Wsign-compare
15
16.include <bsd.prog.mk>
17