summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2012-06-28 06:45:19 +0000
committerWolfgang Denk <wd@denx.de>2012-08-10 23:11:10 +0200
commitaa99f785382c4dc555dc47f9419a4d0fa2fe71eb (patch)
treede46f5a4e2b42b412a4e11f4b65858530a763ef8 /Makefile
parent11a05fbde76765e4b256b86aa3b82ea3184e3c08 (diff)
downloadtalos-obmc-uboot-aa99f785382c4dc555dc47f9419a4d0fa2fe71eb.tar.gz
talos-obmc-uboot-aa99f785382c4dc555dc47f9419a4d0fa2fe71eb.zip
Makefile: allow appending to LIB in sub-makefiles
The top Makefile and the SPL Makefile have lines like those: ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),) LIBS += $(CPUDIR)/omap-common/libomap-common.o endif ifeq ($(SOC),mx5) LIBS += $(CPUDIR)/imx-common/libimx-common.o endif This should be done in the arch/CPU/SoC specific sub-makefiles to keep the top Makefiles clean. This patch also allows adding of new arch/CPU/SoC specific libraries in the future without touching the top Makefiles. Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 73c8e39abc..cdc245352b 100644
--- a/Makefile
+++ b/Makefile
@@ -225,7 +225,7 @@ endif
OBJS := $(addprefix $(obj),$(OBJS))
-LIBS = lib/libgeneric.o
+LIBS += lib/libgeneric.o
LIBS += lib/lzma/liblzma.o
LIBS += lib/lzo/liblzo.o
LIBS += lib/zlib/libz.o
OpenPOWER on IntegriCloud