mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-hlr.git
synced 2025-11-02 13:13:29 +00:00
During code review it was requested to insert an ability to handle different kinds of peer id, in order to be able to add a Global Title in the future. Add this, but only in the publicly visible API. For osmo-hlr internal code, I intend to push implementing this into the future, when a different peer identification actually gets introduced. This way we don't need to implement it now in all osmo-hlr code paths (save time now), but still make all API users aware that this type may be extended in the future. Change-Id: Ide9dcdca283ab989240cfc6e53e9211862a199c5
60 lines
1.1 KiB
Makefile
60 lines
1.1 KiB
Makefile
AM_CFLAGS = \
|
|
$(all_includes) \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_builddir)/include \
|
|
-Wall \
|
|
-ggdb3 \
|
|
$(LIBOSMOCORE_CFLAGS) \
|
|
$(LIBOSMOGSM_CFLAGS) \
|
|
$(LIBOSMOABIS_CFLAGS) \
|
|
$(SQLITE3_CFLAGS) \
|
|
$(NULL)
|
|
|
|
AM_LDFLAGS = \
|
|
-no-install \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = \
|
|
db_test.ok \
|
|
db_test.err \
|
|
$(NULL)
|
|
|
|
check_PROGRAMS = db_test
|
|
|
|
db_test_SOURCES = \
|
|
db_test.c \
|
|
$(NULL)
|
|
|
|
db_test_LDADD = \
|
|
$(top_builddir)/src/logging.o \
|
|
$(top_builddir)/src/db_auc.o \
|
|
$(top_builddir)/src/db_hlr.o \
|
|
$(top_builddir)/src/db.o \
|
|
$(top_builddir)/src/gsup_peer_id.o \
|
|
$(LIBOSMOCORE_LIBS) \
|
|
$(LIBOSMOGSM_LIBS) \
|
|
$(LIBOSMOABIS_LIBS) \
|
|
$(SQLITE3_LIBS) \
|
|
$(NULL)
|
|
|
|
if DB_SQLITE_DEBUG
|
|
db_test_LDADD += $(top_builddir)/src/db_debug.o
|
|
endif
|
|
|
|
.PHONY: db_test.db update_exp manual manual-nonverbose manual-gdb
|
|
db_test.db:
|
|
rm -f db_test.db
|
|
sqlite3 $(builddir)/db_test.db < $(top_srcdir)/sql/hlr.sql
|
|
|
|
update_exp: db_test.db
|
|
cd $(builddir); ./db_test >"$(srcdir)/db_test.ok" 2>"$(srcdir)/db_test.err"
|
|
|
|
manual: db_test.db
|
|
cd $(builddir); ./db_test -v
|
|
|
|
manual-nonverbose: db_test.db
|
|
cd $(builddir); ./db_test
|
|
|
|
manual-gdb: db_test.db
|
|
cd $(builddir); gdb -ex run --args ./db_test -v
|