2026-05-22 12:31:30 +02:00
|
|
|
include ../../../common.mk
|
2014-02-02 17:57:14 +01:00
|
|
|
|
2024-08-19 11:25:51 +02:00
|
|
|
DOT_TARGETS += proc_01 proc_02 proc_03
|
|
|
|
|
DOT_TARGETS += memory_01 memory_02
|
|
|
|
|
DOT_TARGETS += techmap_01
|
2014-02-02 17:57:14 +01:00
|
|
|
|
2024-08-19 11:25:51 +02:00
|
|
|
DOTS = $(addsuffix .dot,$(DOT_TARGETS))
|
2014-02-02 17:57:14 +01:00
|
|
|
|
2024-10-07 10:56:23 +02:00
|
|
|
.PHONY: all dots examples
|
|
|
|
|
all: dots examples
|
2023-11-14 06:54:16 +01:00
|
|
|
dots: $(DOTS)
|
2024-10-07 10:56:23 +02:00
|
|
|
examples:
|
2014-02-02 17:57:14 +01:00
|
|
|
|
2023-11-14 06:54:16 +01:00
|
|
|
%.dot: %.v %.ys
|
2026-05-22 12:31:30 +02:00
|
|
|
@$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot' >/dev/null 2>&1
|
2014-02-02 22:26:26 +01:00
|
|
|
|
2023-11-15 05:39:37 +01:00
|
|
|
.PHONY: clean
|
2014-02-02 22:26:26 +01:00
|
|
|
clean:
|
2026-05-22 12:31:30 +02:00
|
|
|
@rm -f *.dot
|
2014-02-02 17:57:14 +01:00
|
|
|
|