aboutsummaryrefslogtreecommitdiff
path: root/dtt
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 /dtt
parent1b4aaffe4fb2a5e95d9111a5d94fd1f89215dce4 (diff)
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 'dtt')
-rw-r--r--dtt/Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/dtt/Makefile b/dtt/Makefile
index c6a670af1..72e5c88bd 100644
--- a/dtt/Makefile
+++ b/dtt/Makefile
@@ -30,8 +30,13 @@ include $(TOPDIR)/config.mk
LIB = $(obj)libdtt.a
-COBJS = lm75.o ds1621.o adm1021.o lm81.o ds1775.o
+COBJS-y += lm75.o
+COBJS-y += ds1621.o
+COBJS-y += adm1021.o
+COBJS-y += lm81.o
+COBJS-y += ds1775.o
+COBJS := $(COBJS-y)
SRCS := $(COBJS:.o=.c)
OBJS := $(addprefix $(obj),$(COBJS))