3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-27 12:26:28 +00:00
yosys/docs/source/code_examples/synth_flow/Makefile
Miodrag Milanovic 17381fa6f8 Update CI scripts for CMake
Co-authored-by: Catherine <whitequark@whitequark.org>
2026-05-27 08:38:02 +00:00

20 lines
376 B
Makefile

include ../../../common.mk
DOT_TARGETS += proc_01 proc_02 proc_03
DOT_TARGETS += memory_01 memory_02
DOT_TARGETS += techmap_01
DOTS = $(addsuffix .dot,$(DOT_TARGETS))
.PHONY: all dots examples
all: dots examples
dots: $(DOTS)
examples:
%.dot: %.v %.ys
@$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot' >/dev/null 2>&1
.PHONY: clean
clean:
@rm -f *.dot