3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-06-26 10:38:47 +00:00
yosys/docs/source/code_examples/macc/Makefile
Miodrag Milanovic 48a3dcc02a End of file fix
2026-06-23 07:23:41 +02:00

18 lines
395 B
Makefile

include ../../../common.mk
DOTS = macc_simple_xmap.dot macc_xilinx_xmap.dot
.PHONY: all dots examples
all: dots examples
dots: $(DOTS)
examples:
macc_simple_xmap.dot: macc_simple_*.v macc_simple_test.ys
@$(YOSYS) macc_simple_test.ys >/dev/null 2>&1
macc_xilinx_xmap.dot: macc_xilinx_*.v macc_xilinx_test.ys
@$(YOSYS) macc_xilinx_test.ys >/dev/null 2>&1
.PHONY: clean
clean:
@rm -f *.dot