2026-05-22 12:31:30 +02:00
|
|
|
include ../../../common.mk
|
2023-11-14 00:55:39 +01:00
|
|
|
|
2024-10-07 10:56:23 +02:00
|
|
|
.PHONY: all dots examples
|
|
|
|
|
all: dots examples
|
2023-11-14 06:54:16 +01:00
|
|
|
dots: red_or3x1.dot sym_mul.dot mymul.dot mulshift.dot addshift.dot
|
2024-10-07 10:56:23 +02:00
|
|
|
examples:
|
2023-11-14 00:55:39 +01:00
|
|
|
|
|
|
|
|
red_or3x1.dot: red_or3x1_*
|
2026-05-22 12:31:30 +02:00
|
|
|
@$(YOSYS) red_or3x1_test.ys >/dev/null 2>&1
|
2023-11-14 00:55:39 +01:00
|
|
|
|
|
|
|
|
sym_mul.dot: sym_mul_*
|
2026-05-22 12:31:30 +02:00
|
|
|
@$(YOSYS) sym_mul_test.ys >/dev/null 2>&1
|
2023-11-14 00:55:39 +01:00
|
|
|
|
|
|
|
|
mymul.dot: mymul_*
|
2026-05-22 12:31:30 +02:00
|
|
|
@$(YOSYS) mymul_test.ys >/dev/null 2>&1
|
2023-11-14 00:55:39 +01:00
|
|
|
|
|
|
|
|
mulshift.dot: mulshift_*
|
2026-05-22 12:31:30 +02:00
|
|
|
@$(YOSYS) mulshift_test.ys >/dev/null 2>&1
|
2023-11-14 00:55:39 +01:00
|
|
|
|
|
|
|
|
addshift.dot: addshift_*
|
2026-05-22 12:31:30 +02:00
|
|
|
@$(YOSYS) addshift_test.ys >/dev/null 2>&1
|
2023-11-15 05:39:37 +01:00
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
|
clean:
|
2026-05-22 12:31:30 +02:00
|
|
|
@rm -f *.dot
|