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

21 lines
296 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-01-25 12:35:03 +13:00
all: dots
2024-01-17 11:00:42 +13:00
dots: $(DOTS)
%_full.dot: %.ys
$(YOSYS) $<
%.dot: %_full.dot
gvpack -u $*_full.dot -o $@
.PHONY: clean
clean:
rm -f *.dot