Skip to content
Snippets Groups Projects
Commit d5fe6bbd authored by Marek Vavruša's avatar Marek Vavruša
Browse files

makefile: merge libknotcs -> libknot

parent 72366b87
No related branches found
No related tags found
No related merge requests found
......@@ -4,7 +4,7 @@ SUBDIRS = zscanner dnstap .
sbin_PROGRAMS = knotc knotd
bin_PROGRAMS = kdig khost knsupdate knsec3hash
lib_LTLIBRARIES = libknot.la
noinst_LTLIBRARIES = libknotd.la libknotus.la libknotcs.la
noinst_LTLIBRARIES = libknotd.la libknotus.la
# $(YACC) will generate header file
AM_CPPFLAGS = \
......@@ -60,8 +60,94 @@ knsupdate_SOURCES = \
knsec3hash_SOURCES = \
utils/knsec3hash/knsec3hash_main.c
# static: common shared (also in libknot)
libknotcs_la_SOURCES = \
# static: utilities shared
libknotus_la_SOURCES = \
utils/common/exec.c \
utils/common/exec.h \
utils/common/hex.c \
utils/common/hex.h \
utils/common/msg.c \
utils/common/msg.h \
utils/common/netio.c \
utils/common/netio.h \
utils/common/params.c \
utils/common/params.h \
utils/common/resolv.c \
utils/common/resolv.h \
utils/common/strtonum.h \
utils/common/token.c \
utils/common/token.h
# dynamic: libknot
libknot_la_LDFLAGS = \
$(AM_LDFLAGS) \
-version-info 0:1:0
libknot_la_SOURCES = \
libknot/binary.c \
libknot/binary.h \
libknot/consts.c \
libknot/consts.h \
libknot/descriptor.c \
libknot/descriptor.h \
libknot/dname.c \
libknot/dname.h \
libknot/dnssec/bitmap.h \
libknot/dnssec/config.h \
libknot/dnssec/crypto.c \
libknot/dnssec/crypto.h \
libknot/dnssec/key.c \
libknot/dnssec/key.h \
libknot/dnssec/policy.c \
libknot/dnssec/policy.h \
libknot/dnssec/random.h \
libknot/dnssec/rrset-sign.c \
libknot/dnssec/rrset-sign.h \
libknot/dnssec/sig0.c \
libknot/dnssec/sig0.h \
libknot/dnssec/sign.c \
libknot/dnssec/sign.h \
libknot/errcode.c \
libknot/errcode.h \
libknot/libknot.h \
libknot/packet/compr.c \
libknot/packet/compr.h \
libknot/packet/pkt.c \
libknot/packet/pkt.h \
libknot/packet/rrset-wire.c \
libknot/packet/rrset-wire.h \
libknot/packet/wire.h \
libknot/processing/layer.c \
libknot/processing/layer.h \
libknot/processing/overlay.c \
libknot/processing/overlay.h \
libknot/processing/requestor.c \
libknot/processing/requestor.h \
libknot/rdata.c \
libknot/rdata.h \
libknot/rdataset.c \
libknot/rdataset.h \
libknot/rrset-dump.c \
libknot/rrset-dump.h \
libknot/rrset.c \
libknot/rrset.h \
libknot/rrtype/aaaa.h \
libknot/rrtype/dnskey.h \
libknot/rrtype/naptr.h \
libknot/rrtype/nsec.h \
libknot/rrtype/nsec3.c \
libknot/rrtype/nsec3.h \
libknot/rrtype/nsec3param.c \
libknot/rrtype/nsec3param.h \
libknot/rrtype/opt.c \
libknot/rrtype/opt.h \
libknot/rrtype/rdname.h \
libknot/rrtype/rrsig.h \
libknot/rrtype/soa.h \
libknot/rrtype/tsig.c \
libknot/rrtype/tsig.h \
libknot/tsig-op.c \
libknot/tsig-op.h \
libknot/internal/array-sort.h \
libknot/internal/base32hex.c \
libknot/internal/base32hex.h \
......@@ -113,94 +199,74 @@ libknotcs_la_SOURCES = \
libknot/internal/utils.c \
libknot/internal/utils.h
# static: utilities shared
libknotus_la_SOURCES = \
utils/common/exec.c \
utils/common/exec.h \
utils/common/hex.c \
utils/common/hex.h \
utils/common/msg.c \
utils/common/msg.h \
utils/common/netio.c \
utils/common/netio.h \
utils/common/params.c \
utils/common/params.h \
utils/common/resolv.c \
utils/common/resolv.h \
utils/common/strtonum.h \
utils/common/token.c \
utils/common/token.h
# dynamic: libknot
libknot_la_LDFLAGS = \
$(AM_LDFLAGS) \
-version-info 0:1:0
libknot_la_SOURCES = \
libknot/binary.c \
# dynamic: libknot headers
nobase_libknot_la_HEADERS = \
libknot/binary.h \
libknot/consts.c \
libknot/consts.h \
libknot/descriptor.c \
libknot/descriptor.h \
libknot/dname.c \
libknot/dname.h \
libknot/dnssec/bitmap.h \
libknot/dnssec/config.h \
libknot/dnssec/crypto.c \
libknot/dnssec/crypto.h \
libknot/dnssec/key.c \
libknot/dnssec/key.h \
libknot/dnssec/policy.c \
libknot/dnssec/policy.h \
libknot/dnssec/random.h \
libknot/dnssec/rrset-sign.c \
libknot/dnssec/rrset-sign.h \
libknot/dnssec/sig0.c \
libknot/dnssec/sig0.h \
libknot/dnssec/sign.c \
libknot/dnssec/sign.h \
libknot/errcode.c \
libknot/errcode.h \
libknot/libknot.h \
libknot/packet/compr.c \
libknot/packet/compr.h \
libknot/packet/pkt.c \
libknot/packet/pkt.h \
libknot/packet/rrset-wire.c \
libknot/packet/rrset-wire.h \
libknot/packet/wire.h \
libknot/processing/layer.c \
libknot/processing/layer.h \
libknot/processing/overlay.c \
libknot/processing/overlay.h \
libknot/processing/requestor.c \
libknot/processing/requestor.h \
libknot/rdata.c \
libknot/rdata.h \
libknot/rdataset.c \
libknot/rdataset.h \
libknot/rrset-dump.c \
libknot/rrset-dump.h \
libknot/rrset.c \
libknot/rrset.h \
libknot/rrtype/aaaa.h \
libknot/rrtype/dnskey.h \
libknot/rrtype/naptr.h \
libknot/rrtype/nsec.h \
libknot/rrtype/nsec3.c \
libknot/rrtype/nsec3.h \
libknot/rrtype/nsec3param.c \
libknot/rrtype/nsec3param.h \
libknot/rrtype/opt.c \
libknot/rrtype/opt.h \
libknot/rrtype/rdname.h \
libknot/rrtype/rrsig.h \
libknot/rrtype/soa.h \
libknot/rrtype/tsig.c \
libknot/rrtype/tsig.h \
libknot/tsig-op.c \
libknot/tsig-op.h
libknot/tsig-op.h \
libknot/internal/array-sort.h \
libknot/internal/base32hex.h \
libknot/internal/base64.h \
libknot/internal/binsearch.h \
libknot/internal/debug.h \
libknot/internal/endian.h \
libknot/internal/errors.h \
libknot/internal/getline.h \
libknot/internal/heap.h \
libknot/internal/hhash.h \
libknot/internal/lists.h \
libknot/internal/log.h \
libknot/internal/macros.h \
libknot/internal/mem.h \
libknot/internal/mempattern.h \
libknot/internal/mempool.h \
libknot/internal/namedb/namedb.h \
libknot/internal/namedb/namedb_lmdb.h \
libknot/internal/namedb/namedb_trie.h \
libknot/internal/net.h \
libknot/internal/print.h \
libknot/internal/sockaddr.h \
libknot/internal/strlcat.h \
libknot/internal/strlcpy.h \
libknot/internal/tolower.h \
libknot/internal/trie/hat-trie.h \
libknot/internal/trie/murmurhash3.h \
libknot/internal/utils.h
# static: server shared
libknotd_la_SOURCES = \
......@@ -326,15 +392,16 @@ libknotd_la_SOURCES = \
knot/zone/zonefile.h
# libraries
libknot_la_LIBADD = libknotcs.la zscanner/libzscanner.la
libknotd_la_LIBADD = libknotcs.la libknot.la
libknotus_la_LIBADD = libknotcs.la libknot.la
libknot_la_LIBADD = zscanner/libzscanner.la
libknotd_la_LIBADD = libknot.la
libknotus_la_LIBADD = libknot.la
libknotd_la_CPPFLAGS = $(AM_CPPFLAGS) $(lmdb_CFLAGS)
libknotd_la_LDFLAGS = $(AM_LDFLAGS) $(lmdb_LIBS)
libknotus_la_CPPFLAGS = $(AM_CPPFLAGS) $(libidn_CFLAGS)
libknotus_la_LDFLAGS = $(AM_LDFLAGS) $(libidn_LIBS)
libknotcs_la_CPPFLAGS = $(AM_CPPFLAGS) $(systemd_CFLAGS) $(lmdb_CFLAGS)
libknotcs_la_LDFLAGS = $(AM_LDFLAGS) $(systemd_LIBS) $(lmdb_LIBS)
# includes
libknot_ladir = $(includedir)
# sbin programs
knotd_LDADD = libknot.la libknotd.la $(systemd_LIBS) $(lmdb_LIBS)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment