mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-25 02:42:33 -05:00
4503. [cleanup] "make uninstall" now removes file installed by
BIND. (This currently excludes Python files
due to lack of support in setup.py.) [RT #42912]
(cherry picked from commit 6087f87afb)
77 lines
1.8 KiB
Makefile
77 lines
1.8 KiB
Makefile
# Copyright (C) 2009, 2012, 2014-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.3 2009/09/02 23:48:02 tbox Exp $
|
|
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
|
|
VERSION=@BIND9_VERSION@
|
|
|
|
@LIBIRS_API@
|
|
|
|
@BIND9_MAKE_INCLUDES@
|
|
|
|
CINCLUDES = -I. -I./include -I${srcdir}/include \
|
|
${DNS_INCLUDES} ${ISC_INCLUDES} \
|
|
@ISC_OPENSSL_INC@ ${ISCCFG_INCLUDES}
|
|
|
|
CDEFINES = @CRYPTO@
|
|
CWARNINGS =
|
|
|
|
# Alphabetically
|
|
OBJS = context.@O@ \
|
|
dnsconf.@O@ \
|
|
gai_strerror.@O@ getaddrinfo.@O@ getnameinfo.@O@ \
|
|
resconf.@O@
|
|
|
|
# Alphabetically
|
|
SRCS = context.c \
|
|
dnsconf.c \
|
|
gai_strerror.c getaddrinfo.c getnameinfo.c \
|
|
resconf.c
|
|
|
|
LIBS = @LIBS@
|
|
|
|
SUBDIRS = include
|
|
TESTDIRS = @UNITTESTS@
|
|
TARGETS = timestamp
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
version.@O@: version.c
|
|
${LIBTOOL_MODE_COMPILE} ${CC} ${ALL_CFLAGS} \
|
|
-DVERSION=\"${VERSION}\" \
|
|
-DLIBINTERFACE=${LIBINTERFACE} \
|
|
-DLIBREVISION=${LIBREVISION} \
|
|
-DLIBAGE=${LIBAGE} \
|
|
-c ${srcdir}/version.c
|
|
|
|
libirs.@SA@: ${OBJS} version.@O@
|
|
${AR} ${ARFLAGS} $@ ${OBJS} version.@O@
|
|
${RANLIB} $@
|
|
|
|
libirs.la: ${OBJS} version.@O@
|
|
${LIBTOOL_MODE_LINK} \
|
|
${CC} ${ALL_CFLAGS} ${LDFLAGS} -o libirs.la -rpath ${libdir} \
|
|
-version-info ${LIBINTERFACE}:${LIBREVISION}:${LIBAGE} \
|
|
${OBJS} version.@O@ ${LIBS}
|
|
|
|
timestamp: libirs.@A@
|
|
touch timestamp
|
|
|
|
installdirs:
|
|
$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${libdir}
|
|
|
|
install:: timestamp installdirs
|
|
${LIBTOOL_MODE_INSTALL} ${INSTALL_LIBRARY} libirs.@A@ ${DESTDIR}${libdir}
|
|
|
|
uninstall::
|
|
${LIBTOOL_MODE_UNINSTALL} rm -f ${DESTDIR}${libdir}/libirs.@A@
|
|
|
|
clean distclean::
|
|
rm -f libirs.@A@ libirs.la timestamp
|