mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-10 11:17:09 +00:00
see also previous commit Also updates `scripting_intro.rst` to use literal includes, and uses individual image outputs to avoid the intermediary `.tex` file to join them all.
15 lines
307 B
Makefile
15 lines
307 B
Makefile
PROGRAM_PREFIX :=
|
|
|
|
YOSYS ?= ../../../../$(PROGRAM_PREFIX)yosys
|
|
|
|
DOTS = macc_simple_xmap.dot macc_xilinx_xmap.dot
|
|
|
|
dots: $(DOTS)
|
|
|
|
macc_simple_xmap.dot: macc_simple_*.v macc_simple_test.ys
|
|
$(YOSYS) macc_simple_test.ys
|
|
|
|
macc_xilinx_xmap.dot: macc_xilinx_*.v macc_xilinx_test.ys
|
|
$(YOSYS) macc_xilinx_test.ys
|
|
|