You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
757 B
61 lines
757 B
7 years ago
|
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)
|
||
14 years ago
|
|
||
7 years ago
|
# Libraries
|
||
7 years ago
|
SUBDIRS = \
|
||
|
libcommon \
|
||
|
libmgcp \
|
||
|
libbsc \
|
||
|
libmsc \
|
||
|
libtrau \
|
||
|
libfilter \
|
||
7 years ago
|
libcommon-cs \
|
||
7 years ago
|
$(NULL)
|
||
13 years ago
|
|
||
7 years ago
|
# Conditional Libraries
|
||
|
if BUILD_IU
|
||
7 years ago
|
SUBDIRS += \
|
||
|
libiu \
|
||
|
$(NULL)
|
||
7 years ago
|
endif
|
||
|
|
||
|
# Programs
|
||
7 years ago
|
SUBDIRS += \
|
||
|
osmo-nitb \
|
||
|
osmo-bsc_mgcp \
|
||
|
utils \
|
||
|
ipaccess \
|
||
|
gprs \
|
||
|
$(NULL)
|
||
7 years ago
|
|
||
|
# Conditional Programs
|
||
![]()
13 years ago
|
if BUILD_NAT
|
||
7 years ago
|
SUBDIRS += \
|
||
|
osmo-bsc_nat \
|
||
|
$(NULL)
|
||
![]()
13 years ago
|
endif
|
||
7 years ago
|
|
||
![]()
13 years ago
|
if BUILD_BSC
|
||
7 years ago
|
SUBDIRS += \
|
||
|
osmo-bsc \
|
||
|
$(NULL)
|
||
![]()
13 years ago
|
endif
|