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.7 2007/06/19 23:47:18 tbox Exp $
17135446Strhodes
18135446Strhodessrcdir =	@srcdir@
19135446StrhodesVPATH =		@srcdir@
20135446Strhodestop_srcdir =	@top_srcdir@
21135446Strhodes
22135446Strhodes@BIND9_VERSION@
23135446Strhodes
24135446StrhodesHEADERS =	condition.h mutex.h once.h thread.h
25135446Strhodes
26135446StrhodesSUBDIRS =
27135446StrhodesTARGETS =
28135446Strhodes
29135446Strhodes@BIND9_MAKE_RULES@
30135446Strhodes
31135446Strhodesinstalldirs:
32135446Strhodes	$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/isc
33135446Strhodes
34135446Strhodesinstall:: installdirs
35135446Strhodes	for i in ${HEADERS}; do \
36135446Strhodes		${INSTALL_DATA} $(srcdir)/$$i ${DESTDIR}${includedir}/isc ; \
37135446Strhodes	done
38