blob: b502988ed15811b72b34622ee1bccc517b298932 (
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
58
59
60
61
62
63
|
BIN_TARGETS := \
background \
backtick \
cd \
define \
dollarat \
elgetopt \
elgetpositionals \
elglob \
emptyenv \
envfile \
exec \
execlineb \
exit \
export \
fdblock \
fdclose \
fdmove \
fdswap \
fdreserve \
forbacktickx \
foreground \
forstdin \
forx \
getcwd \
getpid \
heredoc \
homeof \
if \
ifelse \
ifte \
ifthenelse \
importas \
loopwhilex \
multidefine \
multisubstitute \
pipeline \
piperw \
redirfd \
runblock \
shift \
trap \
tryexec \
umask \
unexport \
wait \
withstdinas
LIBEXEC_TARGETS :=
LIB_DEFS := EXECLINE=execline
ifeq ($(PEDANTIC_POSIX),1)
BIN_TARGETS += posix-cd posix-umask
$(DESTDIR)$(bindir)/cd: $(DESTDIR)$(bindir)/posix-cd
exec ./tools/install.sh -l posix-cd $(DESTDIR)$(bindir)/cd
$(DESTDIR)$(bindir)/umask: $(DESTDIR)$(bindir)/posix-umask
exec ./tools/install.sh -l posix-umask $(DESTDIR)$(bindir)/umask
endif
|