summaryrefslogtreecommitdiffstats
path: root/lib/lwres/Makefile.in
blob: 4d0f5050c375f94546f6db678bb1c49f42e12a8c (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
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# See the COPYRIGHT file distributed with this work for additional
# information regarding copyright ownership.

# $Id: Makefile.in,v 1.34 2007/06/19 23:47:22 tbox Exp $

srcdir =	@srcdir@
VPATH =		@srcdir@
top_srcdir =	@top_srcdir@

VERSION=@BIND9_VERSION@

@LIBLWRES_API@

@BIND9_MAKE_INCLUDES@

CINCLUDES =	-I${srcdir}/unix/include \
		-I. -I./include -I${srcdir}/include ${ISC_INCLUDES}
CDEFINES =
CWARNINGS =

# Alphabetically
OBJS =		compat.@O@ context.@O@ \
		gai_strerror.@O@ getaddrinfo.@O@ gethost.@O@ \
		getipnode.@O@ getnameinfo.@O@ getrrset.@O@ herror.@O@ \
		lwbuffer.@O@ lwconfig.@O@ lwpacket.@O@ lwresutil.@O@ \
		lwres_gabn.@O@ lwres_gnba.@O@ lwres_grbn.@O@ lwres_noop.@O@ \
		lwinetaton.@O@ lwinetpton.@O@ lwinetntop.@O@ print.@O@

# Alphabetically
SRCS =		compat.c context.c gai_strerror.c getaddrinfo.c gethost.c \
		getipnode.c getnameinfo.c getrrset.c herror.c \
		lwbuffer.c lwconfig.c lwpacket.c lwresutil.c \
		lwres_gabn.c lwres_gnba.c lwres_grbn.c lwres_noop.c \
		lwinetaton.c lwinetpton.c lwinetntop.c print.c

LIBS =		@LIBS@

SUBDIRS =	include man unix
TARGETS =	timestamp
TESTDIRS =	@UNITTESTS@

@BIND9_MAKE_RULES@

version.@O@: version.c
	${LIBTOOL_MODE_COMPILE} ${CC} ${ALL_CFLAGS} \
		-DVERSION=\"${VERSION}\" \
		-DLIBINTERFACE=${LIBINTERFACE} \
		-DLIBREVISION=${LIBREVISION} \
		-DLIBAGE=${LIBAGE} \
		-c ${srcdir}/version.c

liblwres.@SA@: ${OBJS} version.@O@
	${AR} ${ARFLAGS} $@ ${OBJS} version.@O@
	${RANLIB} $@

liblwres.la: ${OBJS} version.@O@
	${LIBTOOL_MODE_LINK} \
		${CC} ${ALL_CFLAGS} ${LDFLAGS} -o liblwres.la -rpath ${libdir} \
		-version-info ${LIBINTERFACE}:${LIBREVISION}:${LIBAGE} \
		${OBJS} version.@O@ ${LIBS}

timestamp: liblwres.@A@
	touch timestamp

testdirs: liblwres.@A@

installdirs:
	$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${libdir}

install:: timestamp installdirs
	${LIBTOOL_MODE_INSTALL} ${INSTALL_LIBRARY} liblwres.@A@ ${DESTDIR}${libdir}

uninstall::
	${LIBTOOL_MODE_UNINSTALL} rm -f ${DESTDIR}${libdir}/liblwres.@A@

clean distclean::
	rm -f liblwres.@A@ liblwres.la timestamp