blob: c4aee33b0a8c6fdf01348b086bdb76d241d26ebf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
REAL_TARGETS := \
cd \
elgetopt \
elgetpositionals \
emptyenv \
exec \
execlineb \
exit \
export \
fdblock \
forbacktickx \
forstdin \
forx \
getcwd \
ifelse \
ifte \
ifthenelse \
import \
loopwhilex \
multidefine \
multisubstitute \
piperw \
runblock \
shift \
trap \
tryexec \
umask \
unexport \
wait \
withstdinas
CHANGED_TARGETS := \
background \
backtick \
define \
dollarat \
elglob \
fdclose \
fdmove \
fdswap \
fdreserve \
foreground \
getpid \
heredoc \
homeof \
if \
importas \
pipeline \
redirfd
BIN_TARGETS := $(REAL_TARGETS) $(CHANGED_TARGETS)
LIBEXEC_TARGETS :=
LIB_DEFS := EXECLINE=execline
EXTRA_TARGETS := .built .installed '&' '`' '=' '$$@' '*' '>&-' '>&' '<>' ';' '!' '<<' '~' '&&' '$$' '|' '<'
|