1245163Serwin# Copyright (C) 2004, 2007, 2012  Internet Systems Consortium, Inc. ("ISC")
2135446Strhodes# Copyright (C) 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.7 2007/06/19 23:47:22 tbox Exp $
17135446Strhodes
18135446Strhodessrcdir =	@srcdir@
19135446StrhodesVPATH =		@srcdir@
20135446Strhodestop_srcdir =	@top_srcdir@
21135446Strhodes
22135446Strhodes@BIND9_VERSION@
23135446Strhodes
24135446Strhodes#
25135446Strhodes# Only list headers that are to be installed and are not
26135446Strhodes# machine generated.  The latter are handled specially in the
27135446Strhodes# install target below.
28135446Strhodes#
29135446StrhodesHEADERS =	alist.h base64.h cc.h ccmsg.h events.h lib.h result.h \
30135446Strhodes		sexpr.h symtab.h symtype.h types.h util.h version.h
31135446StrhodesSUBDIRS =
32135446StrhodesTARGETS =
33135446Strhodes
34135446Strhodes@BIND9_MAKE_RULES@
35135446Strhodes
36135446Strhodesinstalldirs:
37135446Strhodes	$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/isccc
38135446Strhodes
39135446Strhodesinstall:: installdirs
40135446Strhodes	for i in ${HEADERS}; do \
41135446Strhodes		${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/isccc ; \
42135446Strhodes	done
43