blob: 043f04f9c25f982ae511b5b6a8029f625753e072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.16 2017/08/12 11:22:45 sthen Exp $
.include <bsd.own.mk>
BINDIR= /usr/sbin
CHROOTDIR= /var/unbound
XCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_OPTS_UNBOUND= --enable-allsymbols \
--with-ssl=/usr \
--with-libevent=/usr \
--with-libexpat=/usr \
--without-pthreads \
--without-pythonmodule \
--with-chroot-dir=${CHROOTDIR} \
--with-pidfile="" \
--with-rootkey-file=/var/unbound/db/root.key \
--with-conf-file=${CHROOTDIR}/etc/unbound.conf \
--with-username=_unbound \
--disable-shared
PROG= unbound \
unbound-anchor \
unbound-checkconf \
unbound-control \
unbound-host
SCRIPT= unbound-control-setup
MAN= doc/unbound.8 \
doc/unbound.conf.5 \
doc/unbound-anchor.8 \
doc/unbound-checkconf.8 \
doc/unbound-control.8 \
doc/unbound-host.1
all: gnu
.ifndef NOMAN
${MANALL} ${PSALL}: ${MAN}
${MAN}: gnu
.endif
gnu: ${.OBJDIR}/config.status
${MAKE}
.FORCE: .IGNORE
config: .FORCE
-rm -f ${.OBJDIR}/config.cache
cd ${.OBJDIR} && \
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
${XCFLAGS} \
sh ${.CURDIR}/configure ${CONFIGURE_OPTS_UNBOUND}
${.OBJDIR}/config.status:
cd ${.OBJDIR} && \
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
${XCFLAGS} \
sh ${.CURDIR}/configure ${CONFIGURE_OPTS_UNBOUND}
.ifdef NOMAN
maninstall:
@echo NOMAN is set
.endif
install: maninstall
.for file in ${PROG}
${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP} \
-o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${file} ${DESTDIR}${BINDIR}
.endfor
.for file in ${SCRIPT}
${INSTALL} ${INSTALL_COPY} \
-o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
${file} ${DESTDIR}${BINDIR}
.endfor
BEFOREMAN= ${.OBJDIR}/config.status
CLEANFILES+= ${MAN} dnstap/dnstap_config.h doc/example.conf doc/libunbound.3 \
smallapp/unbound-control-setup.sh dnscrypt/dnscrypt_config.h
clean cleandir:
-@if [ -e Makefile ]; then ${MAKE} realclean; fi
rm -f ${CLEANFILES}
depend:
# Nothing here so far...
tags:
# Nothing here so far...
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
.ifndef NOMAN
.include <bsd.man.mk>
.endif
|