Skip to content

Commit

Permalink
add XTRX support
Browse files Browse the repository at this point in the history
  • Loading branch information
sergforce committed Oct 23, 2018
1 parent 3540241 commit efccb39
Show file tree
Hide file tree
Showing 12 changed files with 717 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Transceiver52M/Makefile.am
Expand Up @@ -109,3 +109,13 @@ osmo_trx_lms_LDADD = \
$(LMS_LIBS)
osmo_trx_lms_CPPFLAGS = $(AM_CPPFLAGS) $(LMS_CFLAGS)
endif

if DEVICE_XTRX
bin_PROGRAMS += osmo-trx-xtrx
osmo_trx_xtrx_SOURCES = osmo-trx.cpp
osmo_trx_xtrx_LDADD = \
$(builddir)/device/xtrx/libdevice.la \
$(COMMON_LDADD) \
$(XTRX_LIBS)
osmo_trx_xtrx_CPPFLAGS = $(AM_CPPFLAGS) $(XTRX_CFLAGS)
endif
4 changes: 4 additions & 0 deletions Transceiver52M/device/Makefile.am
Expand Up @@ -15,3 +15,7 @@ endif
if DEVICE_LMS
SUBDIRS += lms
endif

if DEVICE_XTRX
SUBDIRS += xtrx
endif
10 changes: 10 additions & 0 deletions Transceiver52M/device/xtrx/Makefile.am
@@ -0,0 +1,10 @@
include $(top_srcdir)/Makefile.common

AM_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) -I${srcdir}/..
AM_CXXFLAGS = -lpthread $(LIBOSMOCORE_CFLAGS) $(LIBOSMOCTRL_CFLAGS) $(LIBOSMOVTY_CFLAGS)

noinst_HEADERS = XTRXDevice.h

noinst_LTLIBRARIES = libdevice.la

libdevice_la_SOURCES = XTRXDevice.cpp

0 comments on commit efccb39

Please sign in to comment.