bind9/lib/isccc/Makefile.am
Mark Andrews 0bbc0c61e3
Convert DST_ALG defines to enum and group HMAC algorithms
The HMACs and GSSAPI are just using unallocated values.
Moving them around shouldn't cause issues.
Only the dnssec system test knew the internal number in use for hmacmd5.

(cherry picked from commit 09f7e0607a)
2022-09-27 16:55:33 +02:00

38 lines
733 B
Makefile

include $(top_srcdir)/Makefile.top
lib_LTLIBRARIES = libisccc.la
libisccc_ladir = $(includedir)/isccc
libisccc_la_HEADERS = \
include/isccc/alist.h \
include/isccc/base64.h \
include/isccc/cc.h \
include/isccc/ccmsg.h \
include/isccc/events.h \
include/isccc/sexpr.h \
include/isccc/symtab.h \
include/isccc/symtype.h \
include/isccc/types.h \
include/isccc/util.h
libisccc_la_SOURCES = \
$(libisccc_la_HEADERS) \
alist.c \
base64.c \
cc.c \
ccmsg.c \
sexpr.c \
symtab.c
libisccc_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
$(LIBISC_CFLAGS) \
$(LIBDNS_CFLAGS) \
$(LIBISCCC_CFLAGS)
libisccc_la_LIBADD = \
$(LIBISC_LIBS)
libisccc_la_LDFLAGS = \
$(AM_LDFLAGS) \
-release "$(PACKAGE_VERSION)"