blob: 717a6a187213b11863b5492daad310ac588fadfa [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 \
Pau Espin Pedrolaca53202020-07-16 14:49:36 +020050 $(top_builddir)/src/osmo-bsc/bts_trx.o \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020051 $(top_builddir)/src/osmo-bsc/abis_nm.o \
Pau Espin Pedrol02f20562020-07-20 16:21:54 +020052 $(top_builddir)/src/osmo-bsc/acc.o \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020053 $(top_builddir)/src/osmo-bsc/bts_ipaccess_nanobts.o \
54 $(top_builddir)/src/osmo-bsc/bts_ipaccess_nanobts_omlattr.o \
55 $(top_builddir)/src/osmo-bsc/gsm_data.o \
Neels Hofmeyr31f525e2018-05-14 18:14:15 +020056 $(top_builddir)/src/osmo-bsc/net_init.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020057 $(OSMO_LIBS) \
58 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010059
Alexander Huemer7b6673f2016-09-09 00:43:15 +020060ipaccess_proxy_SOURCES = \
61 ipaccess-proxy.c \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020062 stubs.c \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020063 $(NULL)
64
65ipaccess_proxy_LDADD = \
Pau Espin Pedrolaca53202020-07-16 14:49:36 +020066 $(top_builddir)/src/osmo-bsc/abis_nm.o \
Pau Espin Pedrol02f20562020-07-20 16:21:54 +020067 $(top_builddir)/src/osmo-bsc/acc.o \
Pau Espin Pedrol388ed582020-07-15 20:53:16 +020068 $(top_builddir)/src/osmo-bsc/bts.o \
Pau Espin Pedrolaca53202020-07-16 14:49:36 +020069 $(top_builddir)/src/osmo-bsc/bts_trx.o \
Pau Espin Pedrol388ed582020-07-15 20:53:16 +020070 $(top_builddir)/src/osmo-bsc/gsm_data.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020071 $(OSMO_LIBS) \
72 $(NULL)