mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-ggsn.git
synced 2025-10-23 00:12:08 +00:00
32 lines
853 B
Makefile
32 lines
853 B
Makefile
# 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=11:0:0
|
|
|
|
lib_LTLIBRARIES = libgtp.la
|
|
|
|
AM_CFLAGS = \
|
|
-fno-builtin \
|
|
-Wall \
|
|
-DSBINDIR='"$(sbindir)"' \
|
|
-I$(top_srcdir)/include \
|
|
$(LIBOSMOCORE_CFLAGS) \
|
|
$(NULL)
|
|
|
|
libgtp_la_SOURCES = \
|
|
gsn.c \
|
|
gsn_internal.h \
|
|
gtp.c \
|
|
gtp_internal.h \
|
|
gtpie.c \
|
|
lookupa.c \
|
|
lookupa.h \
|
|
pdp.c \
|
|
queue.c \
|
|
queue.h \
|
|
$(NULL)
|
|
|
|
libgtp_la_LDFLAGS = -version-info $(LIBVERSION) -no-undefined
|
|
libgtp_la_LIBADD = $(LIBOSMOCORE_LIBS)
|