1*b5677b36Schristos# Copyright (C) 2004, 2007 Internet Systems Consortium, Inc. ("ISC") 2*b5677b36Schristos# Copyright (C) 2001 Internet Software Consortium. 3*b5677b36Schristos# 4*b5677b36Schristos# Permission to use, copy, modify, and/or distribute this software for any 5*b5677b36Schristos# purpose with or without fee is hereby granted, provided that the above 6*b5677b36Schristos# copyright notice and this permission notice appear in all copies. 7*b5677b36Schristos# 8*b5677b36Schristos# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH 9*b5677b36Schristos# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY 10*b5677b36Schristos# AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, 11*b5677b36Schristos# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM 12*b5677b36Schristos# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE 13*b5677b36Schristos# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 14*b5677b36Schristos# PERFORMANCE OF THIS SOFTWARE. 15*b5677b36Schristos 16*b5677b36Schristos# Id: Makefile.in,v 1.4 2007/06/19 23:47:16 tbox Exp 17*b5677b36Schristos 18*b5677b36Schristossrcdir = @srcdir@ 19*b5677b36SchristosVPATH = @srcdir@ 20*b5677b36Schristostop_srcdir = @top_srcdir@ 21*b5677b36Schristos 22*b5677b36SchristosHEADERS= paths.h 23*b5677b36SchristosSHEADERS= sys/bitypes.h sys/cdefs.h 24*b5677b36Schristos 25*b5677b36Schristosall: 26*b5677b36Schristos 27*b5677b36Schristos@BIND9_MAKE_RULES@ 28*b5677b36Schristos 29*b5677b36Schristosinstalldirs: 30*b5677b36Schristos $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/sys 31*b5677b36Schristos 32*b5677b36Schristosinstall:: installdirs 33*b5677b36Schristos for i in ${HEADERS}; do \ 34*b5677b36Schristos ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}; \ 35*b5677b36Schristos done 36*b5677b36Schristos for i in ${SHEADERS}; do \ 37*b5677b36Schristos ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/sys; \ 38*b5677b36Schristos done 39