1# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
2#
3# This Source Code Form is subject to the terms of the Mozilla Public
4# License, v. 2.0. If a copy of the MPL was not distributed with this
5# file, You can obtain one at http://mozilla.org/MPL/2.0/.
6#
7# See the COPYRIGHT file distributed with this work for additional
8# information regarding copyright ownership.
9
10srcdir =	@srcdir@
11VPATH =		@srcdir@
12top_srcdir =	@top_srcdir@
13
14VERSION=@BIND9_VERSION@
15
16@BIND9_MAKE_INCLUDES@
17
18CINCLUDES =	${DNS_INCLUDES} ${ISC_INCLUDES} \
19		${OPENSSL_CFLAGS}
20CDEFINES =
21CWARNINGS =
22
23LIBS =		@LIBS@
24
25SO_TARGETS =    driver.@SO@
26TARGETS =	@SO_TARGETS@
27
28SRCS =		driver.c
29
30SO_OBJS         = driver.@O@
31SO_SRCS         = driver.c
32
33OBJS =
34
35@BIND9_MAKE_RULES@
36
37CFLAGS =	@CFLAGS@ @SO_CFLAGS@
38SO_LDFLAGS =	@LDFLAGS@ @SO_LDFLAGS@
39
40driver.@SO@: ${SO_OBJS}
41	${LIBTOOL_MODE_LINK} @SO_LD@ ${SO_LDFLAGS} -o $@ driver.@O@
42
43clean distclean::
44	rm -f ${TARGETS}
45
46distclean::
47	rm -f ns1/named.conf
48