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

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2020-10-27 17:04:24 +0300
committerArtjoms Rimdjonoks <artjoms.rimdjonoks@zabbix.com>2020-10-27 17:04:24 +0300
commit0dd943e51dc8b7f844ae717a4b71efbad2f17e74 (patch)
treeb9e93bd06c35a9ca2b3ddebc2338c68d08a09e1a /Makefile.am
parent85bae6a2d211e28dab7f58b21f2fa4011f8f7147 (diff)
........S. [DEV-1694] use make clean to clean tests
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am7
1 files changed, 3 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index 7e51d6c3a41..f3b9d693dab 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -170,9 +170,8 @@ tests_build:
tests: tests_build
tests/tests_run.pl
-tests_clean: clean-recursive
- cd tests && \
- find . -type f -name '*.o' -o -name '*.a' -delete
+clean: clean-recursive
+ (cd tests && make clean)
endif
-.PHONY: test tests
+.PHONY: test tests clean