blob: 5ec376f123a68b5839fed43aafcf7d117b30c458 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $OpenBSD: Makefile,v 1.2 2022/08/29 17:00:30 deraadt Exp $
PROG= resolvd
SRCS= resolvd.c
MAN= resolvd.8
#DEBUG= -g -DDEBUG=3 -O0
CFLAGS+= -Wall -I${.CURDIR}
CFLAGS+= -Wstrict-prototypes -Wmissing-prototypes
CFLAGS+= -Wmissing-declarations
CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual
CFLAGS+= -Wsign-compare
.include <bsd.prog.mk>
# Don't compile resolvd as static binary by default
LDSTATIC=
|