diff options
| author | Kacper <kacper@mail.openlinux.dev> | 2025-12-25 22:45:19 +0100 |
|---|---|---|
| committer | Kacper Fiedorowicz <kf@efab.pl> | 2025-12-25 23:09:24 +0100 |
| commit | 21d28f71b20c1d58e7abb039f12d2c61aadd3f0f (patch) | |
| tree | 17d368252543872600c8eefb6f0b5410f7edced2 /bin/Kbuild | |
| parent | e691a7ff9a4cc0581e9e7f504125c9ecba176221 (diff) | |
Added more kconfig options
Diffstat (limited to 'bin/Kbuild')
| -rw-r--r-- | bin/Kbuild | 24 |
1 files changed, 11 insertions, 13 deletions
@@ -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/ |
