mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 01:49:02 -04:00
55 lines
1.8 KiB
Makefile
55 lines
1.8 KiB
Makefile
# Copyright (C) 1998, 1999, 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.
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
@BIND9_VERSION@
|
|
|
|
#
|
|
# Only list headers that are to be installed!
|
|
#
|
|
HEADERS = assertions.h base64.h bitstring.h boolean.h buffer.h \
|
|
bufferlist.h commandline.h error.h event.h eventclass.h \
|
|
heap.h interfaceiter.h lang.h lex.h lfsr.h lib.h \
|
|
list.h log.h magic.h mem.h mktemplate.h msgcat.h \
|
|
mutexblock.h netaddr.h ondestroy.h platform.h \
|
|
print.h quota.h random.h ratelimiter.h rbtgen.h region.h \
|
|
result.h resultclass.h rwlock.h serial.h sockaddr.h \
|
|
socket.h str.h symtab.h task.h taskpool.h timer.h \
|
|
types.h ufile.h util.h
|
|
|
|
SUBDIRS =
|
|
TARGETS =
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
installdirs:
|
|
if [ ! -d ${DESTDIR}${includedir} ]; then \
|
|
mkdir ${DESTDIR}${includedir} ; \
|
|
fi
|
|
if [ ! -d ${DESTDIR}${includedir}/isc ]; then \
|
|
mkdir ${DESTDIR}${includedir}/isc ; \
|
|
fi
|
|
|
|
install:: installdirs
|
|
for i in ${HEADERS}; do \
|
|
${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/isc ; \
|
|
done
|
|
${INSTALL_DATA} platform.h ${DESTDIR}${includedir}/isc
|
|
|
|
distclean::
|
|
rm -f platform.h
|