2018-02-23 03:53:12 -05:00
|
|
|
# Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
2012-06-28 21:39:47 -04:00
|
|
|
#
|
2016-06-27 00:56:38 -04:00
|
|
|
# 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/.
|
2018-02-23 03:53:12 -05:00
|
|
|
#
|
|
|
|
|
# See the COPYRIGHT file distributed with this work for additional
|
|
|
|
|
# information regarding copyright ownership.
|
2004-03-05 00:14:21 -05:00
|
|
|
|
2007-12-11 15:28:55 -05:00
|
|
|
# $Id: Makefile.in,v 1.4 2007/12/11 20:28:55 marka Exp $
|
2000-06-22 18:00:42 -04:00
|
|
|
|
1999-07-12 16:08:42 -04:00
|
|
|
srcdir = @srcdir@
|
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
top_srcdir = @top_srcdir@
|
|
|
|
|
|
2015-11-09 00:34:24 -05:00
|
|
|
VERSION=@BIND9_VERSION@
|
1999-07-12 16:08:42 -04:00
|
|
|
|
2007-12-11 15:28:55 -05:00
|
|
|
HEADERS = dst.h gssapi.h lib.h result.h
|
1999-07-12 16:08:42 -04:00
|
|
|
|
|
|
|
|
SUBDIRS =
|
|
|
|
|
TARGETS =
|
|
|
|
|
|
|
|
|
|
@BIND9_MAKE_RULES@
|
|
|
|
|
|
|
|
|
|
installdirs:
|
2000-09-20 15:06:16 -04:00
|
|
|
$(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/dst
|
1999-07-12 16:08:42 -04:00
|
|
|
|
|
|
|
|
install:: installdirs
|
|
|
|
|
for i in ${HEADERS}; do \
|
2000-02-08 16:50:23 -05:00
|
|
|
${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/dst ; \
|
1999-07-12 16:08:42 -04:00
|
|
|
done
|
2016-11-01 22:17:07 -04:00
|
|
|
|
|
|
|
|
uninstall::
|
|
|
|
|
for i in ${HEADERS}; do \
|
|
|
|
|
rm -f ${DESTDIR}${includedir}/dst/$$i ; \
|
|
|
|
|
done
|