Move ARCH_LA to Makefile.common

It will later be used by other directories too (tests/Transceiver52M).

Change-Id: I0ca9b7fc5e1377db971cb7da0b3496ba8d61c716
This commit is contained in:
Pau Espin 2018-01-10 12:32:31 +01:00
parent 4ebb289c90
commit 611212676b
2 changed files with 6 additions and 6 deletions

View File

@ -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 = *~

View File

@ -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