Files
yosys/docs/source/code_examples/intro/Makefile
T

16 lines
255 B
Makefile
Raw Normal View History

2023-08-08 11:53:36 +12:00
PROGRAM_PREFIX :=
2023-11-14 18:54:16 +13:00
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
2023-08-03 09:20:29 +12:00
2023-12-14 10:08:46 +13:00
DOTS = counter_00.dot counter_01.dot counter_02.dot counter_03.dot
2023-08-03 09:20:29 +12:00
2024-01-25 12:35:03 +13:00
all: dots
2023-11-14 18:54:16 +13:00
dots: $(DOTS)
2023-08-03 09:20:29 +12:00
2023-12-14 10:08:46 +13:00
$(DOTS): counter.v counter.ys mycells.lib
$(YOSYS) counter.ys
2023-11-15 17:39:37 +13:00
.PHONY: clean
clean:
rm -f *.dot