1245163Serwin# Copyright (C) 2004, 2007, 2012  Internet Systems Consortium, Inc. ("ISC")
2135446Strhodes# Copyright (C) 2000, 2001  Internet Software Consortium.
3135446Strhodes#
4193149Sdougb# Permission to use, copy, modify, and/or distribute this software for any
5135446Strhodes# purpose with or without fee is hereby granted, provided that the above
6135446Strhodes# copyright notice and this permission notice appear in all copies.
7135446Strhodes#
8135446Strhodes# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9135446Strhodes# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10135446Strhodes# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11135446Strhodes# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12135446Strhodes# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13135446Strhodes# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14135446Strhodes# PERFORMANCE OF THIS SOFTWARE.
15135446Strhodes
16234010Sdougb# $Id: Makefile.in,v 1.23 2007/06/19 23:47:22 tbox Exp $
17135446Strhodes
18135446Strhodessrcdir =	@srcdir@
19135446StrhodesVPATH =		@srcdir@
20135446Strhodestop_srcdir =	@top_srcdir@
21135446Strhodes
22135446Strhodes#
23135446Strhodes# Only list headers that are to be installed and are not
24135446Strhodes# machine generated.  The latter are handled specially in the
25135446Strhodes# install target below.
26135446Strhodes#
27135446StrhodesHEADERS =	context.h lwbuffer.h lwpacket.h lwres.h result.h \
28135446Strhodes		int.h lang.h list.h ipv6.h version.h
29135446Strhodes
30135446StrhodesSUBDIRS =
31135446StrhodesTARGETS =
32135446Strhodes
33135446Strhodes@BIND9_MAKE_RULES@
34135446Strhodes
35135446Strhodesinstalldirs:
36135446Strhodes	$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/lwres
37135446Strhodes
38135446Strhodesinstall:: installdirs
39135446Strhodes	for i in ${HEADERS}; do \
40135446Strhodes		${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/lwres ; \
41135446Strhodes	done
42135446Strhodes	${INSTALL_DATA} netdb.h ${DESTDIR}${includedir}/lwres
43135446Strhodes	${INSTALL_DATA} platform.h ${DESTDIR}${includedir}/lwres
44135446Strhodes
45135446Strhodesdistclean::
46135446Strhodes	rm -f netdb.h platform.h
47