mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-cbc.git
synced 2025-10-23 00:12:21 +00:00
This option should be used for any executables which are used only for testing, or for generating other files and are consequently never installed. By specifying this option, we are telling Libtool that the executable it links will only ever be executed from where it is built in the build tree. Libtool is usually able to considerably speed up the link process for such executables. Change-Id: I405b5e85113e9529b4491c7eeeec71afe25ef488
48 lines
769 B
Makefile
48 lines
769 B
Makefile
AM_CPPFLAGS = \
|
|
$(all_includes) \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src/sbcap/skel \
|
|
$(NULL)
|
|
|
|
AM_CFLAGS = \
|
|
-Wall \
|
|
-ggdb3 \
|
|
$(LIBOSMOCORE_CFLAGS) \
|
|
$(LIBOSMOVTY_CFLAGS) \
|
|
$(LIBOSMOGSM_CFLAGS) \
|
|
$(COVERAGE_CFLAGS) \
|
|
$(ULFIUS_CFLAGS) \
|
|
$(JANSSON_CFLAGS) \
|
|
$(ORCANIA_CFLAGS) \
|
|
$(ASN_MODULE_CFLAGS) \
|
|
$(NULL)
|
|
|
|
AM_LDFLAGS = \
|
|
$(COVERAGE_LDFLAGS) \
|
|
-no-install \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
sbcap_test.ok \
|
|
$(NULL)
|
|
|
|
check_PROGRAMS = \
|
|
sbcap_test \
|
|
$(NULL)
|
|
|
|
sbcap_test_SOURCES = \
|
|
sbcap_test.c \
|
|
$(NULL)
|
|
|
|
sbcap_test_LDADD = \
|
|
$(top_builddir)/src/sbcap/libosmo-sbcap.la \
|
|
$(LIBOSMOCORE_LIBS) \
|
|
$(LIBOSMOGSM_LIBS) \
|
|
$(LIBOSMOVTY_LIBS) \
|
|
$(LIBOSMONETIF_LIBS) \
|
|
$(ULFIUS_LIBS) \
|
|
$(JANSSON_LIBS) \
|
|
$(ORCANIA_LIBS) \
|
|
$(LIBSCTP_LIBS) \
|
|
$(NULL)
|