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

27 lines
450 B
Makefile
Raw Normal View History

2023-11-14 12:55:39 +13:00
PROGRAM_PREFIX :=
2023-11-14 18:54:16 +13:00
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
2023-11-14 12:55:39 +13:00
2024-01-25 12:35:03 +13:00
.PHONY: all dots
all: dots
2023-11-14 18:54:16 +13:00
dots: red_or3x1.dot sym_mul.dot mymul.dot mulshift.dot addshift.dot
2023-11-14 12:55:39 +13:00
red_or3x1.dot: red_or3x1_*
$(YOSYS) red_or3x1_test.ys
sym_mul.dot: sym_mul_*
$(YOSYS) sym_mul_test.ys
mymul.dot: mymul_*
$(YOSYS) mymul_test.ys
mulshift.dot: mulshift_*
$(YOSYS) mulshift_test.ys
addshift.dot: addshift_*
$(YOSYS) addshift_test.ys
2023-11-15 17:39:37 +13:00
.PHONY: clean
clean:
rm -f *.dot