2023-08-08 01:53:36 +02:00
|
|
|
PROGRAM_PREFIX :=
|
|
|
|
|
|
2023-11-14 06:54:16 +01:00
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
2023-08-02 23:20:29 +02:00
|
|
|
|
2023-12-07 01:04:46 +01:00
|
|
|
DOTS = counter_00.dot counter_proc.dot counter_01.dot counter_02.dot counter_03.dot
|
2023-08-02 23:20:29 +02:00
|
|
|
|
2023-11-14 06:54:16 +01:00
|
|
|
dots: $(DOTS)
|
2023-08-02 23:20:29 +02:00
|
|
|
|
2023-11-15 05:39:37 +01:00
|
|
|
$(DOTS): counter.v counter_outputs.ys mycells.lib
|
2023-11-14 06:54:16 +01:00
|
|
|
$(YOSYS) counter_outputs.ys
|
2023-11-15 05:39:37 +01:00
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
|
clean:
|
|
|
|
|
rm -f *.dot
|