diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2018-03-15 15:39:45 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2018-03-15 15:39:45 +0000 |
commit | e05986c02a6e2c71a8ec0715edf1d9c536a95898 (patch) | |
tree | 59f324e34a6b681b06eb7498b8c8dd722ee435d4 /package | |
parent | 55bde1a8b9bb8b6a5f0ccde04e56ba7dbcebdc65 (diff) | |
download | execline-e05986c02a6e2c71a8ec0715edf1d9c536a95898.tar.xz |
Second draft
Diffstat (limited to 'package')
-rw-r--r-- | package/info | 2 | ||||
-rw-r--r-- | package/targets.mak | 40 |
2 files changed, 23 insertions, 19 deletions
diff --git a/package/info b/package/info index 6bfc977..8fd600f 100644 --- a/package/info +++ b/package/info @@ -1,4 +1,4 @@ package=execline -version=2.3.0.4 +version=2.4.0.0 category=admin package_macro_name=EXECLINE diff --git a/package/targets.mak b/package/targets.mak index 04eb36d..c4aee33 100644 --- a/package/targets.mak +++ b/package/targets.mak @@ -1,42 +1,25 @@ -BIN_TARGETS := \ -background \ -backtick \ +REAL_TARGETS := \ cd \ -define \ -dollarat \ elgetopt \ elgetpositionals \ -elglob \ emptyenv \ exec \ execlineb \ exit \ export \ fdblock \ -fdclose \ -fdmove \ -fdswap \ -fdreserve \ forbacktickx \ -foreground \ forstdin \ forx \ getcwd \ -getpid \ -heredoc \ -homeof \ -if \ ifelse \ ifte \ ifthenelse \ import \ -importas \ loopwhilex \ multidefine \ multisubstitute \ -pipeline \ piperw \ -redirfd \ runblock \ shift \ trap \ @@ -46,6 +29,27 @@ 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 |