aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2019-07-26 18:10:23 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-07-30 17:15:17 +0000
commit37642177f9fca5190ba4d732e34eb8861c32cf77 (patch)
tree62df3efc4badc6230abe9a06087c7a8a74f0871b /src
parent6401b905743f1e47c7225c35c0852cefb00f673d (diff)
build: fix mess with 'db_test_SOURCES' and 'db_test_LDADD'
Somehow both 'db_test_SOURCES' and 'db_test_LDADD' ended up in 'src/Makefile.am'. This causes automake / autoconf to complain. Let's get rid of both useless declarations. Furthermore, the actual 'db_test_LDADD' in 'tests/Makefile.am' contained references to the source files from '$(top_srcdir)'. Most likely, the original intention was to depend on the object files in '$(top_builddir)'. Let's also fix this. Change-Id: Ib2e436ed91d9b7551dc5b205329d468c2b0ced04
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 7ee019f..131b44f 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -87,21 +87,6 @@ osmo_hlr_db_tool_LDADD = \
$(SQLITE3_LIBS) \
$(NULL)
-db_test_SOURCES = \
- auc.c \
- db.c \
- db_auc.c \
- db_test.c \
- logging.c \
- rand_fake.c \
- $(NULL)
-
-db_test_LDADD = \
- $(LIBOSMOCORE_LIBS) \
- $(LIBOSMOGSM_LIBS) \
- $(SQLITE3_LIBS) \
- $(NULL)
-
osmo_euse_demo_SOURCES = \
osmo-euse-demo.c \
$(NULL)