mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 10:59:35 -05:00
31 lines
789 B
Makefile
31 lines
789 B
Makefile
# Copyright (C) 2000, 2001, 2004, 2007, 2009, 2010, 2012, 2013, 2016 Internet Systems Consortium, Inc. ("ISC")
|
|
#
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# $Id: Makefile.in,v 1.12 2010/06/09 23:50:58 tbox Exp $
|
|
|
|
top_srcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
CINCLUDES = -I${srcdir}/include \
|
|
-I${srcdir}/../unix/include \
|
|
-I../include \
|
|
-I${srcdir}/../include \
|
|
-I${srcdir}/..
|
|
|
|
CDEFINES =
|
|
CWARNINGS =
|
|
|
|
THREADOPTOBJS = condition.@O@ mutex.@O@
|
|
OBJS = @THREADOPTOBJS@ thread.@O@
|
|
|
|
THREADOPTSRCS = condition.c mutex.c
|
|
SRCS = @THREADOPTSRCS@ thread.c
|
|
|
|
SUBDIRS = include
|
|
TARGETS = ${OBJS}
|
|
|
|
@BIND9_MAKE_RULES@
|