summaryrefslogtreecommitdiffstats
path: root/libfdt
diff options
context:
space:
mode:
authorGrant Likely <grant.likely@secretlab.ca>2007-09-24 09:05:30 -0600
committerGrant Likely <grant.likely@secretlab.ca>2007-11-15 11:05:18 -0700
commitf0037c56b0d12cd46215124667b9f83d60ef9391 (patch)
tree6b573be03318ecf4f0d0ed4f904941fe4f02f4a1 /libfdt
parent1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4 (diff)
downloadblackbird-obmc-uboot-f0037c56b0d12cd46215124667b9f83d60ef9391.tar.gz
blackbird-obmc-uboot-f0037c56b0d12cd46215124667b9f83d60ef9391.zip
Build: split COBJS value into multiple lines
This change is in preparation for condtitionial compile support in the build system. By spliting them all into seperate lines now, subsequent patches that change 'COBJS-y += ' into 'COBJS-$(CONFIG_<blah>) += ' will be less invasive and easier to review Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'libfdt')
-rw-r--r--libfdt/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/libfdt/Makefile b/libfdt/Makefile
index dc411370f5..126fa2c02f 100644
--- a/libfdt/Makefile
+++ b/libfdt/Makefile
@@ -27,9 +27,9 @@ LIB = $(obj)libfdt.a
SOBJS =
-COBJS = fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_sw.o fdt_wip.o
-
+COBJS-y += fdt.o fdt_ro.o fdt_rw.o fdt_strerror.o fdt_sw.o fdt_wip.o
+COBJS := $(COBJS-y)
SRCS := $(SOBJS:.o=.S) $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS))
OpenPOWER on IntegriCloud