From d356dea61ee170366acddc373953dad20f6fc48e Mon Sep 17 00:00:00 2001 From: Vincent Palatin Date: Tue, 24 Jan 2012 21:15:26 +0000 Subject: Add modularity to the build You can now enable/disable tasks more easily. To conditionally compile a C file depending on the task FOO activation, just write something like that in the build.mk file : common-$(CONFIG_TASK_FOO)+=foo_source.o Signed-off-by: Vincent Palatin BUG=None TEST=make all BOARD=link && make qemu-tests Change-Id: I760fb248e1599d13190ccd937a68ef47da17b510 --- Makefile.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.rules') diff --git a/Makefile.rules b/Makefile.rules index bd2472e22c..096c886304 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -5,7 +5,7 @@ # Embedded Controller firmware build system - common targets # -objs := $(all-objs) +objs := $(all-y) deps := $(objs:%.o=%.o.d) build-utils := $(foreach u,$(build-util-bin),$(out)/util/$(u)) host-utils := $(foreach u,$(host-util-bin),$(out)/util/$(u)) -- cgit v1.2.1