diff options
author | Son Ho | 2022-11-14 14:05:26 +0100 |
---|---|---|
committer | Son HO | 2022-11-14 14:21:04 +0100 |
commit | e5bd97f4ad08b277057a23094f2cc76abbeeaddb (patch) | |
tree | e729f7616e6aced7f78fb1b6f5beaec3f1d2b22f /tests/coq/Makefile | |
parent | 5a96e28b8706ed945ccbb569881ca1888cd73ace (diff) |
Add a `-use-fuel` option
Diffstat (limited to 'tests/coq/Makefile')
-rw-r--r-- | tests/coq/Makefile | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/tests/coq/Makefile b/tests/coq/Makefile index 5fead9c9..a9c170f7 100644 --- a/tests/coq/Makefile +++ b/tests/coq/Makefile @@ -1,3 +1,19 @@ -# TODO: make this more general -all: - cd misc && $(MAKE) all +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 |