aboutsummaryrefslogtreecommitdiff
path: root/miscutils/make.c
diff options
context:
space:
mode:
Diffstat (limited to 'miscutils/make.c')
-rw-r--r--miscutils/make.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/miscutils/make.c b/miscutils/make.c
index 1414f869c..42fac7f77 100644
--- a/miscutils/make.c
+++ b/miscutils/make.c
@@ -12,10 +12,16 @@
12//config: other files. Normally it's used to build programs from source 12//config: other files. Normally it's used to build programs from source
13//config: code but it can be used in other situations too. 13//config: code but it can be used in other situations too.
14//config: 14//config:
15//config:config PDPMAKE
16//config: bool "pdpmake (18 kb)"
17//config: default n
18//config: help
19//config: Alias for "make"
20//config:
15//config:config FEATURE_MAKE_POSIX 21//config:config FEATURE_MAKE_POSIX
16//config: bool "Runtime enforcement of POSIX" 22//config: bool "Runtime enforcement of POSIX"
17//config: default n 23//config: default n
18//config: depends on MAKE 24//config: depends on MAKE || PDPMAKE
19//config: help 25//config: help
20//config: Allow strict enforcement of POSIX 2017 at runtime by: 26//config: Allow strict enforcement of POSIX 2017 at runtime by:
21//config: - .POSIX special target in makefile 27//config: - .POSIX special target in makefile
@@ -25,6 +31,7 @@
25//config: POSIX compliant. This adds about 500 bytes. 31//config: POSIX compliant. This adds about 500 bytes.
26 32
27//applet:IF_MAKE(APPLET(make, BB_DIR_USR_BIN, BB_SUID_DROP)) 33//applet:IF_MAKE(APPLET(make, BB_DIR_USR_BIN, BB_SUID_DROP))
34//applet:IF_PDPMAKE(APPLET_ODDNAME(pdpmake, make, BB_DIR_USR_BIN, BB_SUID_DROP, make))
28 35
29//kbuild:lib-$(CONFIG_MAKE) += make.o 36//kbuild:lib-$(CONFIG_MAKE) += make.o
30 37