aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.common6
-rw-r--r--Transceiver52M/Makefile.am6
2 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.common b/Makefile.common
index c0fc850..e9820a4 100644
--- a/Makefile.common
+++ b/Makefile.common
@@ -32,4 +32,10 @@ STD_DEFINES_AND_INCLUDES = \
COMMON_LA = $(top_builddir)/CommonLibs/libcommon.la
GSM_LA = $(top_builddir)/GSM/libGSM.la
+if ARCH_ARM
+ARCH_LA = $(top_builddir)/Transceiver52M/arm/libarch.la
+else
+ARCH_LA = $(top_builddir)/Transceiver52M/x86/libarch.la
+endif
+
MOSTLYCLEANFILES = *~
diff --git a/Transceiver52M/Makefile.am b/Transceiver52M/Makefile.am
index dc6e597..8df2d34 100644
--- a/Transceiver52M/Makefile.am
+++ b/Transceiver52M/Makefile.am
@@ -26,12 +26,6 @@ AM_CXXFLAGS = -ldl -lpthread
SUBDIRS = arm x86
-if ARCH_ARM
-ARCH_LA = arm/libarch.la
-else
-ARCH_LA = x86/libarch.la
-endif
-
if USRP1
AM_CPPFLAGS += $(USRP_CFLAGS)
else