~ruther/vhdl-makefile-template

61aa59a8b05d7bd9f806efc30ad7a85d1b18b257 — František Boháček 3 years ago e2ba965
fix: order of statements in makefile
1 files changed, 2 insertions(+), 2 deletions(-)

M Makefile
M Makefile => Makefile +2 -2
@@ 3,6 3,7 @@ SIMDIR := $(ROOT)/sim
export SRCDIR := $(ROOT)/src
TBDIR := $(ROOT)/testbench
WORKDIR := $(ROOT)/work
VHDLEX := vhd

#####################################################
#                                                   #


@@ 17,7 18,6 @@ WAVEFORM_VIEWER := gtkwave

COMPILER := ghdl
COMPILER_FLAGS := --workdir=$(WORKDIR)
VHDLEX := vhd

STOP_TIME ?= 1000ns
WAVEFORM_FILE ?= $(SIMDIR)/out.gwh


@@ 32,7 32,7 @@ EXECUTABLE := $(SIMDIR)/$(TESTBENCH)

.PHONY: all clean xil

compile: $(WORKDIR) $(ALL_SOURCES)
compile: $(SIMDIR) $(WORKDIR) $(ALL_SOURCES)
	@$(COMPILER) -i $(COMPILER_FLAGS) $(ALL_SOURCES)
	@$(COMPILER) -m -o $(EXECUTABLE) $(COMPILER_FLAGS) $(TESTBENCH)


Do not follow this link