mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-hlr.git
synced 2025-11-02 13:13:29 +00:00
This ensures that the rpath of the generated binaries is set to use only the just-compiled so-files and not any system-wide installed libraries while avoiding the ugly shell script wrapper. Change-Id: I927561289b17b313d52fb5c1da55e237fc1d33be
43 lines
677 B
Makefile
43 lines
677 B
Makefile
AM_CPPFLAGS = \
|
|
$(all_includes) \
|
|
-I$(top_srcdir)/src \
|
|
$(NULL)
|
|
|
|
AM_CFLAGS = \
|
|
-Wall \
|
|
-ggdb3 \
|
|
$(LIBOSMOCORE_CFLAGS) \
|
|
$(LIBOSMOGSM_CFLAGS) \
|
|
$(LIBOSMOABIS_CFLAGS) \
|
|
$(NULL)
|
|
|
|
AM_LDFLAGS = \
|
|
-no-install \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
gsup_test.ok \
|
|
gsup_test.err \
|
|
$(NULL)
|
|
|
|
noinst_PROGRAMS = \
|
|
gsup_test \
|
|
$(NULL)
|
|
|
|
gsup_test_SOURCES = \
|
|
gsup_test.c \
|
|
$(NULL)
|
|
|
|
gsup_test_LDADD = \
|
|
$(top_srcdir)/src/luop.c \
|
|
$(top_srcdir)/src/gsup_server.c \
|
|
$(top_srcdir)/src/gsup_router.c \
|
|
$(LIBOSMOCORE_LIBS) \
|
|
$(LIBOSMOGSM_LIBS) \
|
|
$(LIBOSMOABIS_LIBS) \
|
|
$(NULL)
|
|
|
|
.PHONY: update_exp
|
|
update_exp:
|
|
$(builddir)/gsup_test >"$(srcdir)/gsup_test.ok" 2>"$(srcdir)/gsup_test.err"
|