Files
OpenCellular/test/powerdemo.tasklist
Vincent Palatin d356dea61e 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 <vpalatin@chromium.org>

BUG=None
TEST=make all BOARD=link && make qemu-tests

Change-Id: I760fb248e1599d13190ccd937a68ef47da17b510
2012-01-24 23:17:07 +00:00

5 lines
105 B
Plaintext

#define CONFIG_TASK_LIST \
TASK(CONSOLE, console_task, NULL) \
TASK(POWERDEMO, power_demo_task, NULL)