mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-07 09:55:20 +00:00
16 lines
282 B
Makefile
16 lines
282 B
Makefile
PROGRAM_PREFIX :=
|
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
|
|
|
.PHONY: all dots examples
|
|
all: dots examples
|
|
dots: scrambler_p01.dot scrambler_p02.dot
|
|
examples:
|
|
|
|
scrambler_p01.dot scrambler_p02.dot: scrambler.ys scrambler.v
|
|
$(YOSYS) scrambler.ys
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f *.dot
|