TT#81700 Makefile: add clean rule

* remove dynamic files from scenarios

Change-Id: I8b5159849ac752f50cd700e82489736926794c31
mr9.4
Victor Seva 4 years ago
parent 4450e32d9b
commit 8443c39be3

@ -11,6 +11,14 @@ RESULTS ?= reports
all:
$(MAKE) syntaxcheck
.ONESHELL:
clean:
@echo "Clean files"
for SCENARIO in $(SCENARIOS); do
find "$${SCENARIO}" -name '*_test.yml' -exec rm {} \;
find "$${SCENARIO}" -name '*.csv' -exec rm {} \;
done
syntaxcheck: bashismcheck perlcheck pythoncheck shellcheck
bashismcheck:

Loading…
Cancel
Save