3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-25 11:26:22 +00:00
yosys/docs/source/code_examples/techmap/Makefile
2026-05-23 03:48:24 +00:00

25 lines
528 B
Makefile

include ../../../common.mk
.PHONY: all dots examples
all: dots examples
dots: red_or3x1.dot sym_mul.dot mymul.dot mulshift.dot addshift.dot
examples:
red_or3x1.dot: red_or3x1_*
@$(YOSYS) red_or3x1_test.ys >/dev/null 2>&1
sym_mul.dot: sym_mul_*
@$(YOSYS) sym_mul_test.ys >/dev/null 2>&1
mymul.dot: mymul_*
@$(YOSYS) mymul_test.ys >/dev/null 2>&1
mulshift.dot: mulshift_*
@$(YOSYS) mulshift_test.ys >/dev/null 2>&1
addshift.dot: addshift_*
@$(YOSYS) addshift_test.ys >/dev/null 2>&1
.PHONY: clean
clean:
@rm -f *.dot