3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-25 10:05:33 +00:00
yosys/docs/source/code_examples/synth_flow/Makefile
2024-01-25 12:35:03 +13:00

22 lines
351 B
Makefile

TARGETS += proc_01 proc_02 proc_03
TARGETS += memory_01 memory_02
TARGETS += techmap_01
PROGRAM_PREFIX :=
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
DOTS = $(addsuffix .dot,$(TARGETS))
.PHONY: all dots
all: dots
dots: $(DOTS)
%.dot: %.v %.ys
$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
.PHONY: clean
clean:
rm -f *.dot