ccb983c22097af44a07de20a5678c3ab5c1d6212
[SymbiYosys.git] / tests / Makefile
1 test:
2
3 .PHONY: test clean refresh help
4
5 TOOL_LIST := \
6 btorsim \
7 yices \
8 aigbmc \
9 avy \
10 bitwuzla \
11 boolector \
12 btormc \
13 cvc4 \
14 mathsat \
15 pono \
16 suprove \
17 yices-smt2 \
18 yices \
19 yosys-abc \
20 z3
21
22 help:
23 @cat make/help.txt
24
25 export SBY_WORKDIR_GITIGNORE=1
26 export SBY_MAIN=$(realpath $(dir $(firstword $(MAKEFILE_LIST)))/../sbysrc/sby.py)
27
28 make/rules/collect.mk: make/collect_tests.py
29 python3 make/collect_tests.py
30
31 make/rules/test/%.mk:
32 python3 make/test_rules.py $<
33
34 ifneq (help,$(MAKECMDGOALS))
35
36 # This should run every time but only trigger anything depending on it whenever
37 # the script overwrites make/rules/found_tools. This doesn't really match how
38 # make targets usually work, so we manually shell out here.
39
40 FIND_TOOLS := $(shell python3 make/required_tools.py || echo error)
41
42 ifneq (,$(findstring error,$(FIND_TOOLS)))
43 $(error could not run 'python3 make/required_tools.py')
44 endif
45
46 ifneq (,$(FIND_TOOLS))
47 $(warning $(FIND_TOOLS))
48 endif
49
50 include make/rules/collect.mk
51
52 endif