1245163Serwin# Copyright (C) 2009, 2012  Internet Systems Consortium, Inc. ("ISC")
2224090Sdougb#
3224090Sdougb# Permission to use, copy, modify, and/or distribute this software for any
4224090Sdougb# purpose with or without fee is hereby granted, provided that the above
5224090Sdougb# copyright notice and this permission notice appear in all copies.
6224090Sdougb#
7224090Sdougb# THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
8224090Sdougb# REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
9224090Sdougb# AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
10224090Sdougb# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
11224090Sdougb# LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
12224090Sdougb# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
13224090Sdougb# PERFORMANCE OF THIS SOFTWARE.
14224090Sdougb
15234010Sdougb# $Id: Makefile.in,v 1.2 2009/09/01 00:22:27 jinmei Exp $
16224090Sdougb
17224090Sdougbsrcdir =	@srcdir@
18224090Sdougbtop_srcdir =	@top_srcdir@
19224090Sdougb
20224090Sdougb@BIND9_VERSION@
21224090Sdougb
22224090SdougbHEADERS =	dir.h int.h net.h netdb.h offset.h stdtime.h \
23224090Sdougb		syslog.h time.h
24224090Sdougb
25224090SdougbSUBDIRS =
26224090SdougbTARGETS =
27224090Sdougb
28224090Sdougb@BIND9_MAKE_RULES@
29224090Sdougb
30224090Sdougbinstalldirs:
31224090Sdougb	$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${export_includedir}/isc
32224090Sdougb
33224090Sdougbinstall:: installdirs
34224090Sdougb	for i in ${HEADERS}; do \
35224090Sdougb		${INSTALL_DATA} $(top_srcdir)/lib/isc/unix/include/isc/$$i \
36224090Sdougb		${DESTDIR}${export_includedir}/isc ; \
37224090Sdougb	done
38