summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorSon Ho2022-11-11 21:34:29 +0100
committerSon HO2022-11-14 14:21:04 +0100
commit6db835db88c4bcf0e00ce1a7a6bc396382b393c3 (patch)
tree3b2a9d46467cf313e3af641cd164e61af2a09541 /tests/Makefile
parentb191070501ceafdd49c999385c4410848249fe18 (diff)
Reorganize the project to prepare for new backends
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/Makefile b/tests/Makefile
deleted file mode 100644
index a9c170f7..00000000
--- a/tests/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-ALL_DIRS ?= $(filter-out Makefile%, $(wildcard *))
-
-VERIFY_DIRS = $(addprefix verif-,$(ALL_DIRS))
-
-CLEAN_DIRS = $(addprefix clean-,$(ALL_DIRS))
-
-.PHONY: all
-all: $(VERIFY_DIRS)
-
-.PHONY: clean
-clean: $(CLEAN_DIRS)
-
-.PHONY: verif-%
-verif-%:
- cd $* && make all
-
-.PHONY: clean-%
-clean-%:
- cd $* && make clean