3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2026-08-03 10:03:31 +00:00

Docs: Running tasks in parallel

Also using make for dependency management/ordering.
Includes `tests/stage_sim_and_verif/dependencies.mk` file because I was using that to check my make logic (and the docs example is once again incomplete sby).
This commit is contained in:
Krystine Sherwin 2026-07-16 15:12:10 +12:00
parent 138d39159e
commit 3d2d953526
No known key found for this signature in database
6 changed files with 93 additions and 6 deletions

View file

@ -0,0 +1,15 @@
skip_staged_flow_%: skip_staged_flow.sby
sby -f skip_staged_flow.sby $*
skip_staged_flow_stage_1: skip_staged_flow_prep
skip_staged_flow_stage_2: skip_staged_flow_stage_1
skip_staged_flow_stage_3_init: skip_staged_flow_stage_2
skip_staged_flow_stage_3a_cover skip_staged_flow_stage_3b_assert: skip_staged_flow_stage_3_init
.PHONY: stage_3
stage_3: skip_staged_flow_stage_3a_cover skip_staged_flow_stage_3b_assert
.PHONY: clean
clean:
@rm -rf skip_staged_flow
@rm -rf skip_staged_flow_*