blob: 273530cf58db1607726b25ba479c181f87f66409 [file] [log] [blame]
Alexander Huemer7b6673f2016-09-09 00:43:15 +02001AM_CPPFLAGS = \
2 $(all_includes) \
3 -I$(top_srcdir)/include \
4 -I$(top_builddir) \
5 $(NULL)
Harald Weltec9a341b2010-05-04 07:47:54 +02006
Alexander Huemer7b6673f2016-09-09 00:43:15 +02007AM_CFLAGS = \
8 -Wall \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
11 $(LIBOSMOABIS_CFLAGS) \
12 $(COVERAGE_CFLAGS) \
13 $(NULL)
Harald Weltec9a341b2010-05-04 07:47:54 +020014
Alexander Huemer7b6673f2016-09-09 00:43:15 +020015AM_LDFLAGS = \
16 $(COVERAGE_LDFLAGS) \
17 $(NULL)
Harald Weltec9a341b2010-05-04 07:47:54 +020018
Alexander Huemer7b6673f2016-09-09 00:43:15 +020019OSMO_LIBS = \
20 $(LIBOSMOCORE_LIBS) \
21 $(LIBOSMOGSM_LIBS) \
22 $(LIBOSMOABIS_LIBS) \
23 $(NULL)
24
25bin_PROGRAMS = \
26 abisip-find \
Philipp Maier7c900c22018-03-22 19:27:29 +010027 ipaccess-config \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020028 ipaccess-proxy \
29 $(NULL)
30
31abisip_find_LDADD = \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020032 $(OSMO_LIBS) \
33 $(NULL)
34
35abisip_find_SOURCES = \
36 abisip-find.c \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020037 stubs.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020038 $(NULL)
39
40ipaccess_config_SOURCES = \
41 ipaccess-config.c \
42 ipaccess-firmware.c \
43 network_listen.c \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020044 stubs.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020045 $(NULL)
Harald Weltec9a341b2010-05-04 07:47:54 +020046
Harald Welte31c00f72011-03-03 23:29:05 +010047# FIXME: resolve the bogus dependencies patched around here:
Alexander Huemer7b6673f2016-09-09 00:43:15 +020048ipaccess_config_LDADD = \
Pau Espin Pedrol388ed582020-07-15 20:53:16 +020049 $(top_builddir)/src/osmo-bsc/bts.o \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020050 $(top_builddir)/src/osmo-bsc/abis_nm.o \
51 $(top_builddir)/src/osmo-bsc/bts_ipaccess_nanobts.o \
52 $(top_builddir)/src/osmo-bsc/bts_ipaccess_nanobts_omlattr.o \
53 $(top_builddir)/src/osmo-bsc/gsm_data.o \
Neels Hofmeyr31f525e2018-05-14 18:14:15 +020054 $(top_builddir)/src/osmo-bsc/net_init.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020055 $(OSMO_LIBS) \
56 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010057
Alexander Huemer7b6673f2016-09-09 00:43:15 +020058ipaccess_proxy_SOURCES = \
59 ipaccess-proxy.c \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020060 stubs.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020061 $(NULL)
62
63ipaccess_proxy_LDADD = \
Pau Espin Pedrol388ed582020-07-15 20:53:16 +020064 $(top_builddir)/src/osmo-bsc/bts.o \
65 $(top_builddir)/src/osmo-bsc/gsm_data.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020066 $(OSMO_LIBS) \
67 $(NULL)