xref: /openbsd/sbin/resolvd/Makefile (revision 46ebbf29)
1#	$OpenBSD: Makefile,v 1.2 2022/08/29 17:00:30 deraadt 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
18# Don't compile resolvd as static binary by default
19LDSTATIC=
20