vhdl/basics/loop/Makefile (233B)
1 GHDL = ghdl 2 TOP = loop_tb 3 SRCS = $(TOP).vhd 4 5 all: run 6 7 analyze: 8 $(GHDL) -a $(SRCS) 9 10 elaborate: analyze 11 $(GHDL) -e $(TOP) 12 13 run: elaborate 14 $(GHDL) -r $(TOP) --vcd=$(TOP).vcd --stop-time=1ms 15 16 clean: 17 rm -f *.o *.cf $(TOP) $(TOP).vcd
