blob: 653ed97bf3a9f2a54eedb319d76d372557cad379 [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 Welte31c00f72011-03-03 23:29:05 +01006
Alexander Huemer7b6673f2016-09-09 00:43:15 +02007AM_CFLAGS = \
8 -Wall \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020011 $(LIBOSMOABIS_CFLAGS) \
12 $(COVERAGE_CFLAGS) \
13 $(SQLITE3_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020014 $(NULL)
Harald Weltedc9b4e92012-11-15 00:12:56 +010015
Alexander Huemer7b6673f2016-09-09 00:43:15 +020016AM_LDFLAGS = \
17 $(COVERAGE_LDFLAGS) \
18 $(NULL)
19
20noinst_HEADERS = \
21 meas_db.h \
22 $(NULL)
23
24bin_PROGRAMS = \
Philipp Maier200f5b92018-03-22 19:38:17 +010025 bs11_config \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020026 isdnsync \
Alexander Chemerisc6340632015-06-10 18:55:28 -040027 meas_json \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020028 $(NULL)
Holger Hans Peter Freytherbb06eb92015-01-10 09:51:31 +010029if HAVE_SQLITE3
Alexander Huemer7b6673f2016-09-09 00:43:15 +020030bin_PROGRAMS += \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020031 osmo-meas-udp2db \
32 $(NULL)
Max7bb383a2017-05-02 12:59:15 +020033if HAVE_PCAP
34bin_PROGRAMS += \
35 osmo-meas-pcap2db \
36 $(NULL)
37endif
Holger Hans Peter Freytherbb06eb92015-01-10 09:51:31 +010038endif
Harald Welte7465e4c2012-11-13 07:06:54 +010039if HAVE_LIBCDK
Alexander Huemer7b6673f2016-09-09 00:43:15 +020040bin_PROGRAMS += \
41 meas_vis \
42 $(NULL)
Harald Welte7465e4c2012-11-13 07:06:54 +010043endif
Harald Welte31c00f72011-03-03 23:29:05 +010044
Alexander Huemer7b6673f2016-09-09 00:43:15 +020045bs11_config_SOURCES = \
46 bs11_config.c \
47 $(NULL)
Harald Welte31c00f72011-03-03 23:29:05 +010048
Alexander Huemer7b6673f2016-09-09 00:43:15 +020049bs11_config_LDADD = \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020050 $(top_builddir)/src/osmo-bsc/abis_nm.o \
Pau Espin Pedrol388ed582020-07-15 20:53:16 +020051 $(top_builddir)/src/osmo-bsc/bts.o \
Pau Espin Pedrolaca53202020-07-16 14:49:36 +020052 $(top_builddir)/src/osmo-bsc/bts_trx.o \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020053 $(top_builddir)/src/osmo-bsc/bts_siemens_bs11.o \
54 $(top_builddir)/src/osmo-bsc/e1_config.o \
55 $(top_builddir)/src/osmo-bsc/gsm_data.o \
56 $(top_builddir)/src/osmo-bsc/net_init.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020057 $(LIBOSMOCORE_LIBS) \
58 $(LIBOSMOGSM_LIBS) \
59 $(LIBOSMOABIS_LIBS) \
60 $(NULL)
Harald Weltec0de14d2012-11-23 23:35:01 +010061
Alexander Huemer7b6673f2016-09-09 00:43:15 +020062isdnsync_SOURCES = \
63 isdnsync.c \
64 $(NULL)
Harald Welteb4771a62012-11-11 10:58:51 +010065
Alexander Huemer7b6673f2016-09-09 00:43:15 +020066meas_vis_SOURCES = \
67 meas_vis.c \
68 $(NULL)
69
70meas_vis_LDADD = \
71 $(LIBOSMOCORE_LIBS) \
72 $(LIBOSMOGSM_LIBS) \
73 -lcdk \
74 -lncurses \
75 $(NULL)
76
77meas_vis_CFLAGS = \
78 $(LIBOSMOCORE_CFLAGS) \
79 $(LIBOSMOGSM_CFLAGS) \
80 $(NULL)
81
82osmo_meas_pcap2db_SOURCES = \
83 meas_pcap2db.c \
84 meas_db.c \
85 $(NULL)
86
87osmo_meas_pcap2db_LDADD = \
88 $(LIBOSMOCORE_LIBS) \
89 $(LIBOSMOGSM_LIBS) \
90 $(SQLITE3_LIBS) \
91 -lpcap \
92 $(NULL)
93
94osmo_meas_pcap2db_CFLAGS = \
95 $(LIBOSMOCORE_CFLAGS) \
96 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer5265bea2017-05-15 20:42:47 +020097 $(LIBOSMOABIS_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020098 $(NULL)
99
100osmo_meas_udp2db_SOURCES = \
101 meas_udp2db.c \
102 meas_db.c \
103 $(NULL)
104
105osmo_meas_udp2db_LDADD = \
106 $(LIBOSMOCORE_LIBS) \
107 $(LIBOSMOGSM_LIBS) \
108 $(SQLITE3_LIBS) \
109 $(NULL)
110
111osmo_meas_udp2db_CFLAGS = \
112 $(LIBOSMOCORE_CFLAGS) \
113 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer5265bea2017-05-15 20:42:47 +0200114 $(LIBOSMOABIS_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +0200115 $(NULL)
Alexander Chemerisc6340632015-06-10 18:55:28 -0400116
117meas_json_SOURCES = \
118 meas_json.c \
119 $(NULL)
120
121meas_json_LDADD = \
Pau Espin Pedrolaca53202020-07-16 14:49:36 +0200122 $(top_builddir)/src/osmo-bsc/abis_nm.o \
Pau Espin Pedrol388ed582020-07-15 20:53:16 +0200123 $(top_builddir)/src/osmo-bsc/bts.o \
Pau Espin Pedrolaca53202020-07-16 14:49:36 +0200124 $(top_builddir)/src/osmo-bsc/bts_trx.o \
Neels Hofmeyr958f2592018-05-27 01:26:31 +0200125 $(top_builddir)/src/osmo-bsc/gsm_data.o \
Alexander Chemerisc6340632015-06-10 18:55:28 -0400126 $(LIBOSMOCORE_LIBS) \
127 $(LIBOSMOGSM_LIBS) \
Neels Hofmeyr958f2592018-05-27 01:26:31 +0200128 $(LIBOSMOABIS_LIBS) \
Alexander Chemerisc6340632015-06-10 18:55:28 -0400129 $(NULL)
130
131meas_json_CFLAGS = \
132 $(LIBOSMOCORE_CFLAGS) \
133 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer5265bea2017-05-15 20:42:47 +0200134 $(LIBOSMOABIS_CFLAGS) \
Alexander Chemerisc6340632015-06-10 18:55:28 -0400135 $(NULL)