osmo-ggsn/gtp/Makefile.am

16 lines
714 B
Makefile
Raw Normal View History

# This is _NOT_ the library release version, it's an API version.
# Please read chapter "Library interface versions" of the libtool documentation
# before making any modifications: https://www.gnu.org/software/libtool/manual/html_node/Versioning.html
# If major=current-age is increased, remember to update the dh_strip line in debian/rules!
LIBVERSION=8:0:2
2002-12-16 13:33:51 +00:00
lib_LTLIBRARIES = libgtp.la
2015-10-27 13:57:18 +00:00
include_HEADERS = gtp.h pdp.h gtpie.h
2003-07-08 11:31:34 +00:00
AM_CFLAGS = -O2 -fno-builtin -Wall -DSBINDIR='"$(sbindir)"' -ggdb $(LIBOSMOCORE_CFLAGS)
2002-12-16 13:33:51 +00:00
libgtp_la_SOURCES = gtp.c gtp.h gtpie.c gtpie.h pdp.c pdp.h lookupa.c lookupa.h queue.c queue.h
libgtp_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined
libgtp_la_LIBADD = $(LIBOSMOCORE_LIBS)