mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-14 12:58:45 +00:00
16 lines
274 B
Makefile
16 lines
274 B
Makefile
PROGRAM_PREFIX :=
|
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
|
|
|
DOTS = control_hier.dot control_proc.dot
|
|
DOTS += example_hier.dot
|
|
|
|
dots: $(DOTS) example.out
|
|
|
|
$(DOTS) example.out: example.v example.ys
|
|
$(YOSYS) example.ys -l example.out -Q
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.dot
|