Re: [U-Boot] [PATCH 1/3] Makefile: allow appending to LIB in sub-makefiles

2012-08-10 Thread Wolfgang Denk
Dear Daniel Schwierzeck, In message <1340901921-9868-2-git-send-email-daniel.schwierz...@gmail.com> you wrote: > The top Makefile and the SPL Makefile have lines like those: > > ifneq > ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),) > LIBS += $(CPUDIR)/omap-common/lib

Re: [U-Boot] [PATCH 1/3] Makefile: allow appending to LIB in sub-makefiles

2012-07-18 Thread Mike Frysinger
Acked-by: Mike Frysinger -mike signature.asc Description: This is a digitally signed message part. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/3] Makefile: allow appending to LIB in sub-makefiles

2012-06-28 Thread Daniel Schwierzeck
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/C