blob: 272292a1cc7bfe4e3150d0393217a5e92778f964 [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)
6
7AM_CFLAGS = \
8 -Wall \
9 $(LIBOSMOCORE_CFLAGS) \
10 $(LIBOSMOGSM_CFLAGS) \
11 $(LIBOSMOGSM_CFLAGS) \
12 $(LIBOSMOVTY_CFLAGS) \
13 $(COVERAGE_CFLAGS) \
14 $(NULL)
15
16AM_LDFLAGS = \
17 $(LIBOSMOCORE_LIBS) \
18 $(LIBOSMOGSM_LIBS) \
19 $(COVERAGE_LDFLAGS) \
20 $(NULL)
Harald Weltede729a12008-12-23 21:01:25 +000021
Neels Hofmeyrbfa88782016-05-20 21:38:32 +020022# Libraries
Alexander Huemer7b6673f2016-09-09 00:43:15 +020023SUBDIRS = \
24 libcommon \
25 libmgcp \
26 libbsc \
27 libmsc \
28 libtrau \
29 libfilter \
30 $(NULL)
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +080031
Neels Hofmeyrbfa88782016-05-20 21:38:32 +020032# Conditional Libraries
33if BUILD_IU
Alexander Huemer7b6673f2016-09-09 00:43:15 +020034SUBDIRS += \
35 libiu \
36 $(NULL)
Neels Hofmeyrbfa88782016-05-20 21:38:32 +020037endif
38
39# Programs
Alexander Huemer7b6673f2016-09-09 00:43:15 +020040SUBDIRS += \
41 osmo-nitb \
42 osmo-bsc_mgcp \
43 utils \
44 ipaccess \
45 gprs \
46 $(NULL)
Neels Hofmeyrbfa88782016-05-20 21:38:32 +020047
48# Conditional Programs
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +080049if BUILD_NAT
Alexander Huemer7b6673f2016-09-09 00:43:15 +020050SUBDIRS += \
51 osmo-bsc_nat \
52 $(NULL)
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +080053endif
Alexander Huemer7b6673f2016-09-09 00:43:15 +020054
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +080055if BUILD_BSC
Alexander Huemer7b6673f2016-09-09 00:43:15 +020056SUBDIRS += \
57 osmo-bsc \
58 $(NULL)
Holger Hans Peter Freyther30e1ae92010-07-30 02:53:14 +080059endif