aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Machado <luis.machado@linaro.org>2019-01-11 15:52:54 -0200
committerLisa Nguyen <lisa.nguyen@linaro.org>2019-01-13 15:55:25 -0800
commit6810c0a033eeecdd28c123f406d47a26552fcfce (patch)
tree6ae40173d4ed65cbf058fbb3c8a7edf75af5ba0c
parent3b9ce87fc8a8eaf2288a8ab21698b28c898c023d (diff)
Add missing phony targetsandroid-arm64
The following patch adds some missing phony targets. 2019-01-11 Luis Machado <luis.machado@linaro.org> * Makefile: New phony target list. * Test.mk: Likewise. Signed-off-by: Luis Machado <luis.machado@linaro.org>
-rw-r--r--Makefile2
-rw-r--r--Test.mk2
2 files changed, 4 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6c0621f..624ce31 100644
--- a/Makefile
+++ b/Makefile
@@ -32,6 +32,8 @@ SUBDIRS := $(wildcard */.)
# All files that need to be installed.
INSTALL_FILES := $(wildcard */*.sh */*.txt) $(EXEC)
+.PHONY: all check clean install recheck uncheck
+
# Build all the utils required by the tests.
all:
@(cd utils; $(MAKE))
diff --git a/Test.mk b/Test.mk
index 86e59ab..acf62a4 100644
--- a/Test.mk
+++ b/Test.mk
@@ -40,6 +40,8 @@ SRC=$(wildcard ../utils/*.c) $(wildcard ../cpuidle/*.c)
# All executable files built from the utils' source files.
EXEC=$(SRC:%.c=%)
+.PHONY: build_utils check clean recheck run_tests uncheck
+
# Build the utils and run the tests.
build_utils: $(EXEC)