Files
yosys/docs/source/code_examples/opt/Makefile
T

21 lines
317 B
Makefile
Raw Normal View History

2024-01-17 11:00:42 +13:00
PROGRAM_PREFIX :=
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
DOT_NAMES = opt_share opt_muxtree opt_merge opt_expr
DOTS := $(addsuffix .dot,$(DOT_NAMES))
2024-10-07 21:56:23 +13:00
.PHONY: all dots examples
all: dots examples
2024-01-17 11:00:42 +13:00
dots: $(DOTS)
2024-10-07 21:56:23 +13:00
examples:
2024-01-17 11:00:42 +13:00
2024-10-07 21:56:23 +13:00
%.dot: %.ys
2024-01-17 11:00:42 +13:00
$(YOSYS) $<
gvpack -u -o $@ $*_full.dot
2024-01-17 11:00:42 +13:00
.PHONY: clean
clean:
rm -f *.dot