summaryrefslogtreecommitdiff
path: root/bin/Kbuild
diff options
context:
space:
mode:
authorKacper <kacper@mail.openlinux.dev>2025-12-25 22:45:19 +0100
committerKacper Fiedorowicz <kf@efab.pl>2025-12-25 23:09:24 +0100
commit21d28f71b20c1d58e7abb039f12d2c61aadd3f0f (patch)
tree17d368252543872600c8eefb6f0b5410f7edced2 /bin/Kbuild
parente691a7ff9a4cc0581e9e7f504125c9ecba176221 (diff)
Added more kconfig options
Diffstat (limited to 'bin/Kbuild')
-rw-r--r--bin/Kbuild24
1 files changed, 11 insertions, 13 deletions
diff --git a/bin/Kbuild b/bin/Kbuild
index d33a8bbe..b06279b2 100644
--- a/bin/Kbuild
+++ b/bin/Kbuild
@@ -1,13 +1,11 @@
-obj-y += playground/
-
-obj-y += basename/
-obj-y += clear/
-obj-y += echo/
-obj-y += false/
-obj-y += free/
-obj-y += gzip/
-obj-y += pwd/
-obj-y += sleep/
-obj-y += sync/
-obj-y += true/
-obj-y += yes/
+obj-$(CONFIG_BIN_BASENAME) += basename/
+obj-$(CONFIG_BIN_CLEAR) += clear/
+obj-$(CONFIG_BIN_ECHO) += echo/
+obj-$(CONFIG_BIN_FALSE) += false/
+obj-$(CONFIG_BIN_FREE) += free/
+obj-$(CONFIG_BIN_GZIP) += gzip/
+obj-$(CONFIG_BIN_PWD) += pwd/
+obj-$(CONFIG_BIN_SLEEP) += sleep/
+obj-$(CONFIG_BIN_SYNC) += sync/
+obj-$(CONFIG_BIN_TRUE) += true/
+obj-$(CONFIG_BIN_YES) += yes/