2014-02-02 17:57:14 +01:00
|
|
|
|
2014-02-02 22:26:26 +01:00
|
|
|
TARGETS += proc_01 proc_02 proc_03
|
|
|
|
|
TARGETS += opt_01 opt_02 opt_03 opt_04
|
|
|
|
|
TARGETS += memory_01 memory_02
|
2014-02-04 16:51:12 +01:00
|
|
|
TARGETS += techmap_01
|
|
|
|
|
TARGETS += abc_01
|
2014-02-02 17:57:14 +01:00
|
|
|
|
2023-08-08 01:53:36 +02:00
|
|
|
PROGRAM_PREFIX :=
|
|
|
|
|
|
2023-11-14 06:54:16 +01:00
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
2023-08-08 01:53:36 +02:00
|
|
|
|
2023-11-14 06:54:16 +01:00
|
|
|
DOTS = $(addsuffix .dot,$(TARGETS))
|
2014-02-02 17:57:14 +01:00
|
|
|
|
2023-11-14 06:54:16 +01:00
|
|
|
dots: $(DOTS)
|
2014-02-02 17:57:14 +01:00
|
|
|
|
2023-11-14 06:54:16 +01:00
|
|
|
%.dot: %.v %.ys
|
|
|
|
|
$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
|
2014-02-02 22:26:26 +01:00
|
|
|
|
|
|
|
|
clean:
|
2023-11-14 06:54:16 +01:00
|
|
|
rm -f $(DOTS)
|
2014-02-02 17:57:14 +01:00
|
|
|
|