yosys/docs/source/code_examples/synth_flow/Makefile

23 lines
351 B
Makefile
Raw Normal View History

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