yosys/docs/source/code_examples/synth_flow/Makefile

23 lines
367 B
Makefile
Raw Normal View History

2014-02-02 10:57:14 -06:00
2024-08-19 04:25:51 -05:00
DOT_TARGETS += proc_01 proc_02 proc_03
DOT_TARGETS += memory_01 memory_02
DOT_TARGETS += techmap_01
2014-02-02 10:57:14 -06:00
PROGRAM_PREFIX :=
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
2024-08-19 04:25:51 -05:00
DOTS = $(addsuffix .dot,$(DOT_TARGETS))
2014-02-02 10:57:14 -06:00
2024-01-24 17:35:03 -06:00
.PHONY: all dots
all: dots
dots: $(DOTS)
2014-02-02 10:57:14 -06:00
%.dot: %.v %.ys
$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
2014-02-02 15:26:26 -06:00
.PHONY: clean
2014-02-02 15:26:26 -06:00
clean:
rm -f *.dot
2014-02-02 10:57:14 -06:00