mirror of
https://github.com/uutils/coreutils
synced 2025-01-22 01:45:24 +00:00
Merge pull request #18 from ashleyh/master
reduce merge pain of Makefile
This commit is contained in:
commit
f03670b70a
1 changed files with 15 additions and 2 deletions
17
Makefile
17
Makefile
|
@ -7,8 +7,21 @@ RUSTCFLAGS := --opt-level=3
|
||||||
RMFLAGS :=
|
RMFLAGS :=
|
||||||
|
|
||||||
# Output names
|
# Output names
|
||||||
EXES := false printenv true yes cat whoami env wc echo
|
EXES := \
|
||||||
TESTS := cat
|
cat \
|
||||||
|
echo \
|
||||||
|
env \
|
||||||
|
false \
|
||||||
|
printenv \
|
||||||
|
true \
|
||||||
|
wc \
|
||||||
|
whoami \
|
||||||
|
yes \
|
||||||
|
|
||||||
|
|
||||||
|
TESTS := \
|
||||||
|
cat \
|
||||||
|
|
||||||
|
|
||||||
# Utils stuff
|
# Utils stuff
|
||||||
EXES_PATHS := $(addprefix build/,$(EXES))
|
EXES_PATHS := $(addprefix build/,$(EXES))
|
||||||
|
|
Loading…
Reference in a new issue