aboutsummaryrefslogtreecommitdiff
path: root/cmd/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-07 14:33:53 -0700
committerTom Rini <trini@konsulko.com>2023-04-06 19:10:08 -0400
commita554ee7edee8e10b38c6899ad8556daf58ca3afe (patch)
tree193a646521cf659f333c5e1c11745116259b0477 /cmd/Makefile
parentf3bb055ecb3f3fde701d22f4d245ad6b4cba06e6 (diff)
downloadu-boot-a554ee7edee8e10b38c6899ad8556daf58ca3afe.tar.gz
cmd: Add 2048 game
Add the 2048 game, a good demo of ANSI sequences and a way to waste a little time. Bring it it from Barebox, modified for code style. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r--cmd/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile
index 054ef42017..6c37521b4e 100644
--- a/cmd/Makefile
+++ b/cmd/Makefile
@@ -12,6 +12,7 @@ obj-y += panic.o
obj-y += version.o
# command
+obj-$(CONFIG_CMD_2048) += 2048.o
obj-$(CONFIG_CMD_ACPI) += acpi.o
obj-$(CONFIG_CMD_ADDRMAP) += addrmap.o
obj-$(CONFIG_CMD_AES) += aes.o