summaryrefslogtreecommitdiffstats
path: root/commands/Makefile
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2008-08-13 15:54:53 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2008-08-13 16:29:17 +0200
commit932b57873db47db89989b86789b216e50a753478 (patch)
tree45121689cbab9b60340f62e6148405fdbea53163 /commands/Makefile
parent0dd24dc17d561fa0a9f8d5b2ffb5c31e1cf7985c (diff)
downloadbarebox-932b57873db47db89989b86789b216e50a753478.tar.gz
barebox-932b57873db47db89989b86789b216e50a753478.tar.xz
move several commands into extra files
move false, true, help, insmod, lsmod, version into extra files Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands/Makefile')
-rw-r--r--commands/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/commands/Makefile b/commands/Makefile
index 1b3565f915..a828061abf 100644
--- a/commands/Makefile
+++ b/commands/Makefile
@@ -39,3 +39,9 @@ obj-$(CONFIG_CMD_PRINTENV) += printenv.o
obj-$(CONFIG_CMD_SAVEENV) += saveenv.o
obj-$(CONFIG_CMD_LOADENV) += loadenv.o
obj-$(CONFIG_CMD_NAND) += nand.o
+obj-$(CONFIG_CMD_TRUE) += true.o
+obj-$(CONFIG_CMD_FALSE) += false.o
+obj-$(CONFIG_CMD_VERSION) += version.o
+obj-$(CONFIG_CMD_HELP) += help.o
+obj-$(CONFIG_CMD_LSMOD) += lsmod.o
+obj-$(CONFIG_CMD_INSMOD) += insmod.o