11556Srgrimes# Copyright (C) 2009, 2012, 2014  Internet Systems Consortium, Inc. ("ISC")
21556Srgrimes#
31556Srgrimes# Permission to use, copy, modify, and/or distribute this software for any
41556Srgrimes# purpose with or without fee is hereby granted, provided that the above
51556Srgrimes# copyright notice and this permission notice appear in all copies.
61556Srgrimes#
71556Srgrimes# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
81556Srgrimes# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
91556Srgrimes# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
101556Srgrimes# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
111556Srgrimes# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
121556Srgrimes# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
131556Srgrimes# PERFORMANCE OF THIS SOFTWARE.
141556Srgrimes
151556Srgrimes# $Id: Makefile.in,v 1.3 2009/09/02 23:48:02 tbox Exp $
161556Srgrimes
171556Srgrimessrcdir =	@srcdir@
181556SrgrimesVPATH =		@srcdir@
191556Srgrimestop_srcdir =	@top_srcdir@
201556Srgrimes
211556Srgrimes#
221556Srgrimes# Only list headers that are to be installed and are not
231556Srgrimes# machine generated.  The latter are handled specially in the
241556Srgrimes# install target below.
251556Srgrimes#
261556SrgrimesHEADERS =	version.h
271556Srgrimes
281556SrgrimesSUBDIRS =
291556SrgrimesTARGETS =
301556Srgrimes
311556Srgrimes@BIND9_MAKE_RULES@
321556Srgrimes
331556Srgrimesinstalldirs:
341556Srgrimes	$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/irs
351556Srgrimes
361556Srgrimesinstall:: installdirs
3790153Smarkm	for i in ${HEADERS}; do \
381556Srgrimes		${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/irs ; \
3927967Ssteve	done
4090153Smarkm	${INSTALL_DATA} netdb.h ${DESTDIR}${includedir}/irs
4127967Ssteve	${INSTALL_DATA} platform.h ${DESTDIR}${includedir}/irs
4299109Sobrien	${INSTALL_DATA} resconf.h ${DESTDIR}${includedir}/irs
4399109Sobrien	${INSTALL_DATA} types.h ${DESTDIR}${includedir}/irs
441556Srgrimes
451556Srgrimesdistclean::
461556Srgrimes	rm -f netdb.h platform.h
47106371Stjr