[BACK]Return to Makefile.in CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / external / mpl / bind / dist / lib / dns / include / dns

Annotation of src/external/mpl/bind/dist/lib/dns/include/dns/Makefile.in, Revision 1.1.1.5

1.1       christos    1: # Copyright (C) Internet Systems Consortium, Inc. ("ISC")
                      2: #
                      3: # This Source Code Form is subject to the terms of the Mozilla Public
                      4: # License, v. 2.0. If a copy of the MPL was not distributed with this
                      5: # file, You can obtain one at http://mozilla.org/MPL/2.0/.
                      6: #
                      7: # See the COPYRIGHT file distributed with this work for additional
                      8: # information regarding copyright ownership.
                      9:
                     10: srcdir =       @srcdir@
                     11: VPATH =                @srcdir@
                     12: top_srcdir =   @top_srcdir@
                     13:
                     14: VERSION=@BIND9_VERSION@
                     15:
                     16: HEADERS =      acl.h adb.h badcache.h bit.h byaddr.h \
                     17:                cache.h callbacks.h catz.h cert.h \
                     18:                client.h clientinfo.h compress.h \
                     19:                db.h dbiterator.h dbtable.h diff.h dispatch.h \
                     20:                dlz.h dlz_dlopen.h dns64.h dnsrps.h dnssec.h ds.h dsdigest.h \
                     21:                dnstap.h dyndb.h ecs.h \
                     22:                edns.h ecdb.h events.h fixedname.h forward.h geoip.h \
                     23:                ipkeylist.h iptable.h \
1.1.1.4   christos   24:                journal.h kasp.h keydata.h keyflags.h keymgr.h keytable.h \
1.1.1.5 ! christos   25:                keyvalues.h lib.h librpz.h lmdb.h lookup.h log.h \
1.1.1.4   christos   26:                master.h masterdump.h message.h \
1.1       christos   27:                name.h ncache.h nsec.h nsec3.h nta.h opcode.h order.h \
                     28:                peer.h portlist.h private.h \
                     29:                rbt.h rcode.h rdata.h rdataclass.h rdatalist.h \
                     30:                rdataset.h rdatasetiter.h rdataslab.h rdatatype.h request.h \
                     31:                resolver.h result.h rootns.h rpz.h rriterator.h rrl.h \
                     32:                sdb.h sdlz.h secalg.h secproto.h soa.h ssu.h stats.h \
                     33:                tcpmsg.h time.h timer.h tkey.h tsec.h tsig.h ttl.h types.h \
                     34:                update.h validator.h version.h view.h xfrin.h \
1.1.1.2   christos   35:                zone.h zonekey.h zoneverify.h zt.h
1.1       christos   36:
1.1.1.3   christos   37: GENHEADERS =   enumclass.h enumtype.h rdatastruct.h
1.1       christos   38:
                     39: SUBDIRS =
                     40: TARGETS =
                     41:
                     42: @BIND9_MAKE_RULES@
                     43:
                     44: installdirs:
                     45:        $(SHELL) ${top_srcdir}/mkinstalldirs ${DESTDIR}${includedir}/dns
                     46:
                     47: install:: installdirs
                     48:        for i in ${HEADERS}; do \
1.1.1.2   christos   49:                ${INSTALL_DATA} ${srcdir}/$$i ${DESTDIR}${includedir}/dns || exit 1; \
1.1       christos   50:        done
                     51:        for i in ${GENHEADERS}; do \
1.1.1.2   christos   52:                ${INSTALL_DATA} $$i ${DESTDIR}${includedir}/dns || exit 1; \
1.1       christos   53:        done
                     54:
                     55: uninstall::
                     56:        for i in ${GENHEADERS}; do \
1.1.1.2   christos   57:                rm -f ${DESTDIR}${includedir}/dns/$$i || exit 1; \
1.1       christos   58:        done
                     59:        for i in ${HEADERS}; do \
1.1.1.2   christos   60:                rm -f ${DESTDIR}${includedir}/dns/$$i || exit 1; \
1.1       christos   61:        done

CVSweb <webmaster@jp.NetBSD.org>