From: Tim Newsome Date: Wed, 21 Sep 2016 17:23:35 +0000 (-0700) Subject: Move debug testing from all into debug-check target. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=690cd59bb28efdc4db8609b582db44497251c488;p=riscv-tests.git Move debug testing from all into debug-check target. Fixes issue #30. --- diff --git a/Makefile.in b/Makefile.in index d2b088e..5afa084 100644 --- a/Makefile.in +++ b/Makefile.in @@ -6,7 +6,7 @@ bmarkdir := $(abs_top_src_dir)/benchmarks isa_src_dir := $(abs_top_src_dir)/isa debug_src_dir := $(abs_top_src_dir)/debug -all: benchmarks isa debug +all: benchmarks isa install: all install -d $(instbasedir)/share/riscv-tests/isa @@ -22,7 +22,7 @@ isa: mkdir -p isa $(MAKE) -C isa -f $(isa_src_dir)/Makefile src_dir=$(isa_src_dir) XLEN=$(XLEN) -debug: +debug-check: mkdir -p debug $(MAKE) -C debug -f $(debug_src_dir)/Makefile src_dir=$(debug_src_dir) XLEN=$(XLEN)