mirror of https://github.com/YosysHQ/yosys.git
18 lines
300 B
Makefile
18 lines
300 B
Makefile
PROGRAM_PREFIX :=
|
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
|
|
|
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
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.dot
|