2023-08-07 18:53:36 -05:00
|
|
|
PROGRAM_PREFIX :=
|
|
|
|
|
2023-11-13 23:54:16 -06:00
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
2023-08-02 16:20:29 -05:00
|
|
|
|
2023-12-13 15:08:46 -06:00
|
|
|
DOTS = counter_00.dot counter_01.dot counter_02.dot counter_03.dot
|
2023-08-02 16:20:29 -05:00
|
|
|
|
2024-10-07 03:56:23 -05:00
|
|
|
.PHONY: all dots examples
|
|
|
|
all: dots examples
|
2023-11-13 23:54:16 -06:00
|
|
|
dots: $(DOTS)
|
2024-10-07 03:56:23 -05:00
|
|
|
examples:
|
2023-08-02 16:20:29 -05:00
|
|
|
|
2023-12-13 15:08:46 -06:00
|
|
|
$(DOTS): counter.v counter.ys mycells.lib
|
|
|
|
$(YOSYS) counter.ys
|
2023-11-14 22:39:37 -06:00
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -f *.dot
|