1
0

Merge pull request #28 from ucb-bar/yusnup

Don't re-generate the .d files on "make clean"
This commit is contained in:
Colin Schmidt 2015-11-12 00:46:21 -08:00
commit 97d0e195ae
2 changed files with 4 additions and 0 deletions

View File

@ -70,7 +70,9 @@ test:
# Run assembly tests and benchmarks
#--------------------------------------------------------------------
ifneq ($(MAKECMDGOALS),clean)
-include $(generated_dir)/$(MODEL).$(CONFIG).d
endif
$(output_dir)/%.run: $(output_dir)/%.hex emulator-$(MODEL)-$(CONFIG)
./$(emu) +dramsim +max-cycles=$(timeout_cycles) +loadmem=$< none 2> /dev/null 2> $@ && [ $$PIPESTATUS -eq 0 ]

View File

@ -21,7 +21,9 @@ TB ?= rocketTestHarness
include $(base_dir)/Makefrag
include $(sim_dir)/Makefrag
ifneq ($(MAKECMDGOALS),clean)
-include $(generated_dir)/$(MODEL).$(CONFIG).d
endif
include $(base_dir)/vsim/Makefrag-verilog
all: $(simv)