mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-28 21:17:54 +00:00
47 lines
1.5 KiB
Makefile
47 lines
1.5 KiB
Makefile
# Copyright (C) 1998-2000 Internet Software Consortium.
|
|
#
|
|
# Permission to use, copy, modify, and distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
|
|
# DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
|
|
# INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
|
|
# INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
|
|
# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
|
|
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
|
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
# $Id: Makefile.in,v 1.33 2000/11/14 23:38:09 tale Exp $
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
CINCLUDES = -I${srcdir}/include \
|
|
-I${srcdir}/../@ISC_THREAD_DIR@/include \
|
|
-I../include \
|
|
-I${srcdir}/../include \
|
|
-I${srcdir}/..
|
|
|
|
CDEFINES =
|
|
CWARNINGS =
|
|
|
|
# Alphabetically
|
|
OBJS = @ISC_IPV6_O@ \
|
|
app.@O@ dir.@O@ entropy.@O@ errno2result.@O@ file.@O@ \
|
|
fsaccess.@O@ interfaceiter.@O@ keyboard.@O@ net.@O@ \
|
|
os.@O@ resource.@O@ socket.@O@ stdio.@O@ stdtime.@O@ time.@O@
|
|
|
|
# Alphabetically
|
|
SRCS = @ISC_IPV6_C@ \
|
|
app.c dir.c entropy.c errno2result.c file.c \
|
|
fsaccess.c interfaceiter.c keyboard.c net.c \
|
|
os.c resource.c socket.c stdio.c stdtime.c time.c
|
|
|
|
SUBDIRS = include
|
|
TARGETS = ${OBJS}
|
|
|
|
@BIND9_MAKE_RULES@
|