2014-02-02 10:57:14 -06:00
|
|
|
|
2014-02-02 15:26:26 -06:00
|
|
|
TARGETS += proc_01 proc_02 proc_03
|
|
|
|
TARGETS += memory_01 memory_02
|
2014-02-04 09:51:12 -06:00
|
|
|
TARGETS += techmap_01
|
2014-02-02 10:57:14 -06:00
|
|
|
|
2023-08-07 18:53:36 -05:00
|
|
|
PROGRAM_PREFIX :=
|
|
|
|
|
2023-11-13 23:54:16 -06:00
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
2023-08-07 18:53:36 -05:00
|
|
|
|
2023-11-13 23:54:16 -06:00
|
|
|
DOTS = $(addsuffix .dot,$(TARGETS))
|
2014-02-02 10:57:14 -06:00
|
|
|
|
2024-01-24 17:35:03 -06:00
|
|
|
.PHONY: all dots
|
|
|
|
all: dots
|
2023-11-13 23:54:16 -06:00
|
|
|
dots: $(DOTS)
|
2014-02-02 10:57:14 -06:00
|
|
|
|
2023-11-13 23:54:16 -06:00
|
|
|
%.dot: %.v %.ys
|
|
|
|
$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
|
2014-02-02 15:26:26 -06:00
|
|
|
|
2023-11-14 22:39:37 -06:00
|
|
|
.PHONY: clean
|
2014-02-02 15:26:26 -06:00
|
|
|
clean:
|
2023-11-14 22:39:37 -06:00
|
|
|
rm -f *.dot
|
2014-02-02 10:57:14 -06:00
|
|
|
|