rename makefiles | move verilog rule to common.mk

This commit is contained in:
abejgonzalez
2019-03-08 16:47:27 -08:00
parent 82273107c1
commit 2c246af110
5 changed files with 14 additions and 61 deletions

View File

@@ -11,7 +11,7 @@ sim_dir=$(abspath .)
#########################################################################################
# include shared variables
#########################################################################################
include $(base_dir)/Makefrag-Variables
include $(base_dir)/variables.mk
#########################################################################################
# name of simulator (used to generate *.f arguments file)
@@ -32,7 +32,7 @@ debug: $(sim_debug)
#########################################################################################
# import other necessary rules and variables
#########################################################################################
include $(base_dir)/Makefrag
include $(base_dir)/common.mk
#########################################################################################
# vcs binary and arguments
@@ -71,12 +71,6 @@ VCS_NONCC_OPTS = \
VCS_OPTS = -notice -line $(VCS_CC_OPTS) $(VCS_NONCC_OPTS)
#########################################################################################
# helper rule to just make verilog files
#########################################################################################
.PHONY: verilog
verilog: $(sim_vsrcs)
#########################################################################################
# vcs simulator rules
#########################################################################################