aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/Makefile.am
blob: e4b2b960cc40a1af16dc03d11f7eb09de644f8a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
INCLUDES = $(all_includes) -I$(top_srcdir)/include -I$(top_builddir)
AM_CFLAGS=-Wall $(LIBOSMOCORE_CFLAGS) $(LIBOSMOVTY_CFLAGS) $(COVERAGE_CFLAGS)
AM_LDFLAGS = $(LIBOSMOCORE_LIBS) $(COVERAGE_LDFLAGS)

SUBDIRS = common abis mgcp bsc trau osmo-nitb utils ipaccess gprs

# Conditional modules
if BUILD_NAT
SUBDIRS += nat
endif
if BUILD_BSC
SUBDIRS += osmo-bsc
endif

bin_PROGRAMS = bsc_mgcp

bsc_mgcp_SOURCES = mgcp/mgcp_main.c
bsc_mgcp_LDADD = common/libcommon.a mgcp/libmgcp.a $(LIBOSMOVTY_LIBS)