2026-05-22 12:31:30 +02:00
|
|
|
include ../../../common.mk
|
2023-08-02 23:20:29 +02:00
|
|
|
|
2023-12-13 22:08:46 +01:00
|
|
|
DOTS = counter_00.dot counter_01.dot counter_02.dot counter_03.dot
|
2023-08-02 23:20:29 +02: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: $(DOTS)
|
2024-10-07 10:56:23 +02:00
|
|
|
examples:
|
2023-08-02 23:20:29 +02:00
|
|
|
|
2023-12-13 22:08:46 +01:00
|
|
|
$(DOTS): counter.v counter.ys mycells.lib
|
2026-05-22 12:31:30 +02:00
|
|
|
@$(YOSYS) counter.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
|