diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:04:34 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:04:34 +0000 |
commit | 371c8a8bca2b6862226bc79c13d143e07c1d8fc3 (patch) | |
tree | 06c7dc8826596690422e79d5bde2f46c90492de3 /src/Makefile.am | |
parent | Initial commit. (diff) | |
download | libnftnl-371c8a8bca2b6862226bc79c13d143e07c1d8fc3.tar.xz libnftnl-371c8a8bca2b6862226bc79c13d143e07c1d8fc3.zip |
Adding upstream version 1.2.6.upstream/1.2.6upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..3cd259c --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,73 @@ +include $(top_srcdir)/Make_global.am +lib_LTLIBRARIES = libnftnl.la + +libnftnl_la_LIBADD = ${LIBMNL_LIBS} +libnftnl_la_LDFLAGS = -Wl,--version-script=$(srcdir)/libnftnl.map \ + -version-info $(LIBVERSION) + +libnftnl_la_SOURCES = utils.c \ + batch.c \ + flowtable.c \ + common.c \ + gen.c \ + table.c \ + trace.c \ + chain.c \ + object.c \ + rule.c \ + set.c \ + set_elem.c \ + ruleset.c \ + udata.c \ + expr.c \ + expr_ops.c \ + expr/bitwise.c \ + expr/byteorder.c \ + expr/cmp.c \ + expr/range.c \ + expr/connlimit.c \ + expr/counter.c \ + expr/ct.c \ + expr/data_reg.c \ + expr/dup.c \ + expr/exthdr.c \ + expr/flow_offload.c \ + expr/fib.c \ + expr/fwd.c \ + expr/last.c \ + expr/limit.c \ + expr/log.c \ + expr/lookup.c \ + expr/dynset.c \ + expr/immediate.c \ + expr/inner.c \ + expr/match.c \ + expr/meta.c \ + expr/numgen.c \ + expr/nat.c \ + expr/tproxy.c \ + expr/objref.c \ + expr/payload.c \ + expr/queue.c \ + expr/quota.c \ + expr/reject.c \ + expr/rt.c \ + expr/target.c \ + expr/tunnel.c \ + expr/masq.c \ + expr/redir.c \ + expr/hash.c \ + expr/socket.c \ + expr/synproxy.c \ + expr/osf.c \ + expr/xfrm.c \ + obj/counter.c \ + obj/ct_helper.c \ + obj/quota.c \ + obj/tunnel.c \ + obj/limit.c \ + obj/synproxy.c \ + obj/ct_timeout.c \ + obj/secmark.c \ + obj/ct_expect.c \ + libnftnl.map |