mirror of
https://github.com/RGBCube/uutils-coreutils
synced 2025-07-29 12:07:46 +00:00
Added build instructions and allowed selection of which tests to run
This commit is contained in:
parent
68e4d86f9d
commit
33bcc3156b
2 changed files with 42 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -27,9 +27,14 @@ BUILD ?= $(PROGS)
|
|||
EXES := \
|
||||
$(filter $(BUILD),$(filter-out $(DONT_BUILD),$(PROGS)))
|
||||
|
||||
TESTS := \
|
||||
# Programs with usable tests
|
||||
TEST_PROGS := \
|
||||
cat \
|
||||
|
||||
TEST ?= $(TEST_PROGS)
|
||||
|
||||
TESTS := \
|
||||
$(filter $(TEST),$(filter-out $(DONT_TEST),$(filter $(BUILD),$(filter-out $(DONT_BUILD),$(TEST_PROGS)))))
|
||||
|
||||
# Utils stuff
|
||||
EXES_PATHS := $(addprefix build/,$(EXES))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue