aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/Makefile.am
blob: cfad7dfea38b6023cfe573e315d7a9b777567b66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
AM_CPPFLAGS = \
	$(all_includes) \
	-I$(top_srcdir)/include \
	-I$(top_builddir) \
	$(NULL)

AM_CFLAGS = \
	-Wall \
	$(LIBOSMOCORE_CFLAGS) \
	$(LIBOSMOGSM_CFLAGS) \
	$(LIBOSMOGSM_CFLAGS) \
	$(LIBOSMOVTY_CFLAGS) \
	$(COVERAGE_CFLAGS) \
	$(NULL)

AM_LDFLAGS = \
	$(LIBOSMOCORE_LIBS) \
	$(LIBOSMOGSM_LIBS) \
	$(COVERAGE_LDFLAGS) \
	$(NULL)

# Libraries
SUBDIRS = \
	libcommon \
	libmgcp \
	libbsc \
	libmsc \
	libtrau \
	libfilter \
	libcommon-cs \
	$(NULL)

# Conditional Libraries
if BUILD_IU
SUBDIRS += \
	libiu \
	$(NULL)
endif

# Programs
SUBDIRS += \
	osmo-nitb \
	osmo-bsc_mgcp \
	utils \
	ipaccess \
	gprs \
	$(NULL)

# Conditional Programs
if BUILD_NAT
SUBDIRS += \
	osmo-bsc_nat \
	$(NULL)
endif

if BUILD_BSC
SUBDIRS += \
	osmo-bsc \
	$(NULL)
endif