3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-05-28 12:56:30 +00:00
yosys/docs/source/code_examples/intro/Makefile
Miodrag Milanovic a5a3828de8 Update CI scripts for CMake
Co-authored-by: Catherine <whitequark@whitequark.org>
2026-05-27 12:49:17 +00:00

15 lines
282 B
Makefile

include ../../../common.mk
DOTS = counter_00.dot counter_01.dot counter_02.dot counter_03.dot
.PHONY: all dots examples
all: dots examples
dots: $(DOTS)
examples:
$(DOTS): counter.v counter.ys mycells.lib
@$(YOSYS) counter.ys >/dev/null 2>&1
.PHONY: clean
clean:
@rm -f *.dot