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.3 2009/09/02 23:48:02 tbox Exp $
16224090Sdougb
17224090Sdougbtop_srcdir =	@top_srcdir@
18224090Sdougbsrcdir =	@top_srcdir@/lib/isc/pthreads
19254402Serwinexport_srcdir = @top_srcdir@/lib/export
20224090Sdougb
21224090Sdougb@BIND9_MAKE_INCLUDES@
22224090Sdougb
23224090SdougbCINCLUDES =	-I${srcdir}/include \
24224090Sdougb		-I${srcdir}/../unix/include \
25254402Serwin		-I${export_srcdir}/isc/include \
26224090Sdougb		-I../include \
27224090Sdougb		-I${srcdir}/../include \
28224090Sdougb		-I${srcdir}/..
29224090Sdougb
30224090SdougbCDEFINES =
31224090SdougbCWARNINGS =
32224090Sdougb
33224090SdougbOBJS =		condition.@O@ mutex.@O@ thread.@O@
34224090Sdougb
35224090SdougbSRCS =		condition.c mutex.c thread.c
36224090Sdougb
37224090SdougbSUBDIRS =	include
38224090SdougbTARGETS =	${OBJS}
39224090Sdougb
40224090Sdougb@BIND9_MAKE_RULES@
41