Blame src/Makefile.am

Packit c43939
# This is _NOT_ the library release version, it's an API version.
Packit c43939
# Extracted from Chapter 6 "Library interface versions" of the libtool docs.
Packit c43939
#
Packit c43939
# <snippet>
Packit c43939
# Here are a set of rules to help you update your library version information:
Packit c43939
#
Packit c43939
# 1. Start with version information of `0:0:0' for each libtool library.
Packit c43939
# 2. Update the version information only immediately before a public release
Packit c43939
# of your software. More frequent updates are unnecessary, and only guarantee
Packit c43939
# that the current interface number gets larger faster.
Packit c43939
# 3. If the library source code has changed at all since the last update,
Packit c43939
# then increment revision (`c:r:a' becomes `c:r+1:a').
Packit c43939
# 4. If any interfaces have been added, removed, or changed since the last
Packit c43939
# update, increment current, and set revision to 0.
Packit c43939
# 5. If any interfaces have been added since the last public release, then
Packit c43939
# increment age.
Packit c43939
# 6. If any interfaces have been removed since the last public release, then
Packit c43939
# set age to 0.
Packit c43939
# </snippet>
Packit c43939
#
Packit c43939
LIBVERSION=6:0:5
Packit c43939
Packit c43939
include ${top_srcdir}/Make_global.am
Packit c43939
Packit c43939
lib_LTLIBRARIES = libnetfilter_queue.la
Packit c43939
Packit c43939
noinst_HEADERS = internal.h
Packit c43939
Packit c43939
libnetfilter_queue_la_LDFLAGS = -Wc,-nostartfiles -lnfnetlink \
Packit c43939
				-version-info $(LIBVERSION)
Packit c43939
libnetfilter_queue_la_SOURCES = libnetfilter_queue.c	\
Packit c43939
				nlmsg.c			\
Packit c43939
				extra/checksum.c	\
Packit c43939
				extra/ipv6.c		\
Packit c43939
				extra/tcp.c		\
Packit c43939
				extra/ipv4.c		\
Packit c43939
				extra/pktbuff.c		\
Packit c43939
				extra/udp.c
Packit c43939
Packit c43939
libnetfilter_queue_la_LIBADD  = ${LIBNFNETLINK_LIBS} ${LIBMNL_LIBS}