mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 13:03:33 +00:00
This should really be using the FSM in libosmocore/laforge/iu_up: take the best of both sides and integate in the libosmocore FSM implementation, then use it here. - in libosmocore, the FSM definition is nicer. - here, we have correct header checksums. This patch here also adds RTP header stripping/adding functionality, after introducing using msgb to pass data around. Change-Id: Ibc70e0aa00476926dd1f4ea8139c34f31f9cdfa3
46 lines
733 B
Makefile
46 lines
733 B
Makefile
AM_CPPFLAGS = \
|
|
$(all_includes) \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir) \
|
|
$(NULL)
|
|
|
|
AM_CFLAGS = \
|
|
-Wall \
|
|
-ggdb3 \
|
|
$(LIBOSMOCORE_CFLAGS) \
|
|
$(LIBOSMOVTY_CFLAGS) \
|
|
$(LIBOSMOGSM_CFLAGS) \
|
|
$(LIBOSMONETIF_CFLAGS) \
|
|
$(COVERAGE_CFLAGS) \
|
|
$(NULL)
|
|
|
|
AM_LDFLAGS = \
|
|
$(COVERAGE_LDFLAGS) \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
iuup_test.ok \
|
|
iuup_test.err \
|
|
$(NULL)
|
|
|
|
noinst_PROGRAMS = \
|
|
iuup_test \
|
|
$(NULL)
|
|
|
|
iuup_test_SOURCES = \
|
|
iuup_test.c \
|
|
$(NULL)
|
|
|
|
iuup_test_LDADD = \
|
|
$(top_builddir)/src/libosmo-mgcp/libosmo-mgcp.a \
|
|
$(LIBOSMOCORE_LIBS) \
|
|
$(LIBOSMOVTY_LIBS) \
|
|
$(LIBOSMOGSM_LIBS) \
|
|
$(LIBRARY_DL) \
|
|
$(LIBOSMONETIF_LIBS) \
|
|
-lm \
|
|
$(NULL)
|
|
|
|
update_exp:
|
|
$(builddir)/iuup_test >$(srcdir)/iuup_test.ok 2>$(srcdir)/iuup_test.err
|