mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-28 11:25:53 +00:00
Replace leftover `opt` example source/images with examples specific to the `opt_*` pass. Currently has images for `opt_expr`, `opt_merge`, `opt_muxtree`, and `opt_share`. Also includes some other TODO updates.
20 lines
324 B
Makefile
20 lines
324 B
Makefile
|
|
TARGETS += proc_01 proc_02 proc_03
|
|
TARGETS += memory_01 memory_02
|
|
TARGETS += techmap_01
|
|
|
|
PROGRAM_PREFIX :=
|
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
|
|
|
DOTS = $(addsuffix .dot,$(TARGETS))
|
|
|
|
dots: $(DOTS)
|
|
|
|
%.dot: %.v %.ys
|
|
$(YOSYS) -p 'script $*.ys; show -notitle -prefix $* -format dot'
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.dot
|
|
|