mirror of
https://github.com/YosysHQ/sby.git
synced 2026-05-01 02:03:45 +00:00
Use the test Makefile for all examples
* Rename and move sbysrc/demo[123].sby to docs/examples/demos
* Make them use multiple tasks for multiple engines
* Scan docs/examples for sby files for make test
* `make ci` is now `NOSKIP` by default
* Skip scripts using `verific` w/o yosys verific support
* This does not fail even with NOSKIP set
This commit is contained in:
parent
1d21513a47
commit
499371fd39
18 changed files with 77 additions and 92 deletions
|
|
@ -1,15 +1,17 @@
|
|||
TESTDIR ?= ..
|
||||
|
||||
test:
|
||||
@$(MAKE) -C .. $(SUBDIR)/$@
|
||||
@$(MAKE) -C $(TESTDIR) $(SUBDIR)/$@
|
||||
|
||||
.PHONY: test refresh IMPLICIT_PHONY
|
||||
|
||||
IMPLICIT_PHONY:
|
||||
|
||||
refresh:
|
||||
@$(MAKE) -C .. refresh
|
||||
@$(MAKE) -C $(TESTDIR) refresh
|
||||
|
||||
help:
|
||||
@$(MAKE) -C .. help
|
||||
@$(MAKE) -C $(TESTDIR) help
|
||||
|
||||
%: IMPLICIT_PHONY
|
||||
@$(MAKE) -C .. $(SUBDIR)/$@
|
||||
@$(MAKE) -C $(TESTDIR) $(SUBDIR)/$@
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue