blob: 6696679714acd0e0c98b1509a05fb182c8da2c5b [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 \
Neels Hofmeyr958f2592018-05-27 01:26:31 +020052 $(top_builddir)/src/osmo-bsc/bts_siemens_bs11.o \
53 $(top_builddir)/src/osmo-bsc/e1_config.o \
54 $(top_builddir)/src/osmo-bsc/gsm_data.o \
55 $(top_builddir)/src/osmo-bsc/net_init.o \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020056 $(LIBOSMOCORE_LIBS) \
57 $(LIBOSMOGSM_LIBS) \
58 $(LIBOSMOABIS_LIBS) \
59 $(NULL)
Harald Weltec0de14d2012-11-23 23:35:01 +010060
Alexander Huemer7b6673f2016-09-09 00:43:15 +020061isdnsync_SOURCES = \
62 isdnsync.c \
63 $(NULL)
Harald Welteb4771a62012-11-11 10:58:51 +010064
Alexander Huemer7b6673f2016-09-09 00:43:15 +020065meas_vis_SOURCES = \
66 meas_vis.c \
67 $(NULL)
68
69meas_vis_LDADD = \
70 $(LIBOSMOCORE_LIBS) \
71 $(LIBOSMOGSM_LIBS) \
72 -lcdk \
73 -lncurses \
74 $(NULL)
75
76meas_vis_CFLAGS = \
77 $(LIBOSMOCORE_CFLAGS) \
78 $(LIBOSMOGSM_CFLAGS) \
79 $(NULL)
80
81osmo_meas_pcap2db_SOURCES = \
82 meas_pcap2db.c \
83 meas_db.c \
84 $(NULL)
85
86osmo_meas_pcap2db_LDADD = \
87 $(LIBOSMOCORE_LIBS) \
88 $(LIBOSMOGSM_LIBS) \
89 $(SQLITE3_LIBS) \
90 -lpcap \
91 $(NULL)
92
93osmo_meas_pcap2db_CFLAGS = \
94 $(LIBOSMOCORE_CFLAGS) \
95 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer5265bea2017-05-15 20:42:47 +020096 $(LIBOSMOABIS_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +020097 $(NULL)
98
99osmo_meas_udp2db_SOURCES = \
100 meas_udp2db.c \
101 meas_db.c \
102 $(NULL)
103
104osmo_meas_udp2db_LDADD = \
105 $(LIBOSMOCORE_LIBS) \
106 $(LIBOSMOGSM_LIBS) \
107 $(SQLITE3_LIBS) \
108 $(NULL)
109
110osmo_meas_udp2db_CFLAGS = \
111 $(LIBOSMOCORE_CFLAGS) \
112 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer5265bea2017-05-15 20:42:47 +0200113 $(LIBOSMOABIS_CFLAGS) \
Alexander Huemer7b6673f2016-09-09 00:43:15 +0200114 $(NULL)
Alexander Chemerisc6340632015-06-10 18:55:28 -0400115
116meas_json_SOURCES = \
117 meas_json.c \
118 $(NULL)
119
120meas_json_LDADD = \
Pau Espin Pedrol388ed582020-07-15 20:53:16 +0200121 $(top_builddir)/src/osmo-bsc/bts.o \
Neels Hofmeyr958f2592018-05-27 01:26:31 +0200122 $(top_builddir)/src/osmo-bsc/gsm_data.o \
Alexander Chemerisc6340632015-06-10 18:55:28 -0400123 $(LIBOSMOCORE_LIBS) \
124 $(LIBOSMOGSM_LIBS) \
Neels Hofmeyr958f2592018-05-27 01:26:31 +0200125 $(LIBOSMOABIS_LIBS) \
Alexander Chemerisc6340632015-06-10 18:55:28 -0400126 $(NULL)
127
128meas_json_CFLAGS = \
129 $(LIBOSMOCORE_CFLAGS) \
130 $(LIBOSMOGSM_CFLAGS) \
Alexander Huemer5265bea2017-05-15 20:42:47 +0200131 $(LIBOSMOABIS_CFLAGS) \
Alexander Chemerisc6340632015-06-10 18:55:28 -0400132 $(NULL)