aboutsummaryrefslogtreecommitdiff
path: root/miscutils
diff options
context:
space:
mode:
authorRon Yorston <rmy@pobox.com>2022-11-10 11:29:06 +0000
committerRon Yorston <rmy@pobox.com>2022-11-10 12:47:32 +0000
commitf261d2d278537e6f0ca50cda68f0c3f768a56e40 (patch)
tree16a6d78b20c63f3bfbe24983876dad119dcbc800 /miscutils
parent6642c285c177258928e36a1f6de741f8ab770445 (diff)
downloadbusybox-w32-f261d2d278537e6f0ca50cda68f0c3f768a56e40.tar.gz
busybox-w32-f261d2d278537e6f0ca50cda68f0c3f768a56e40.tar.bz2
busybox-w32-f261d2d278537e6f0ca50cda68f0c3f768a56e40.zip
make: make + sh configuration
Add a configuration that just includes make and a shell. Add 'pdpmake' as an alias for 'make'.
Diffstat (limited to 'miscutils')
-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