Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/checkpoint-restore/criu.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKir Kolyshkin <kolyshkin@gmail.com>2019-01-23 23:02:21 +0300
committerAndrei Vagin <avagin@gmail.com>2019-04-21 06:25:26 +0300
commitb368e66165ab35f0ecffad44ffe4abf2193802ba (patch)
tree5064888cd72d4ac30c3a8ed9a5f59d0103a20278 /test
parent6fe7e9eab41484330b23e7cdc98bcbda84cfab3f (diff)
test/others/libcriu/Makefile: fix phony targets
Add run as a phony target. Move .PHONY declarations next to their targets. Reviewed-by: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com> Signed-off-by: Andrei Vagin <avagin@gmail.com>
Diffstat (limited to 'test')
-rw-r--r--test/others/libcriu/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/others/libcriu/Makefile b/test/others/libcriu/Makefile
index d828f7e12..5289ed15a 100644
--- a/test/others/libcriu/Makefile
+++ b/test/others/libcriu/Makefile
@@ -5,9 +5,11 @@ TESTS += test_iters
TESTS += test_errno
all: $(TESTS)
+.PHONY: all
run: all
./run.sh
+.PHONY: run
define genb
$(1): $(1).o lib.o
@@ -21,6 +23,4 @@ $(foreach t, $(TESTS), $(eval $(call genb, $(t))))
clean:
rm -rf $(TESTS) $(TESTS:%=%.o) lib.o
-
.PHONY: clean
-.PHONY: all