diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-03-20 18:31:10 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2020-03-28 11:51:29 +0100 |
commit | 108d00a6b2a1bfa7ec5550acdf4b12915d132d96 (patch) | |
tree | e1210a11061103edb74cbf1c0a5312380c26f4fe /test/TEST-01-BASIC | |
parent | ec43f6862eeafa1d737b60c8c812066f7cf1ff7a (diff) | |
download | systemd-108d00a6b2a1bfa7ec5550acdf4b12915d132d96.tar.gz |
test: simplify the Makefiles
has-overflow was a temporary hack that was removed in
844da987ef8b8c98f837d3328eeb3ed481f43835 (Oct. 2016). All the makefiles
can be the same, and all the targets can be handled identically.
Diffstat (limited to 'test/TEST-01-BASIC')
-rw-r--r-- | test/TEST-01-BASIC/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/TEST-01-BASIC/Makefile b/test/TEST-01-BASIC/Makefile index 45e9bfc67c..79fe9688b8 100644 --- a/test/TEST-01-BASIC/Makefile +++ b/test/TEST-01-BASIC/Makefile @@ -1,9 +1,6 @@ BUILD_DIR=$(shell ../../tools/find-build-dir.sh) -all setup run: +all setup run clean clean-again: @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --$@ -clean clean-again: - @basedir=../.. TEST_BASE_DIR=../ BUILD_DIR=$(BUILD_DIR) ./test.sh --clean - .PHONY: all setup run clean clean-again |