diff options
author | Son Ho | 2022-06-20 06:21:57 +0200 |
---|---|---|
committer | Son Ho | 2022-06-20 06:21:57 +0200 |
commit | 4c3a164ed570ecfa721255519554911754913271 (patch) | |
tree | ebb622998a13f79662f92b02c5f2600c928e7f62 /tests/Makefile | |
parent | f51f4c5d883691ef73094a79b4316255191627b0 (diff) |
Add makefiles to test the F* files
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 00000000..a9c170f7 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,19 @@ +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 |