aboutsummaryrefslogtreecommitdiff
path: root/isa/Makefile
diff options
context:
space:
mode:
authorSebastien Mirolo <smirolo@fortylines.com>2013-07-24 12:52:24 -0700
committerSebastien Mirolo <smirolo@fortylines.com>2013-07-24 12:52:24 -0700
commit1f66845b35b4e59e4fb232085f0738913527d0d6 (patch)
tree528e9962237813d46e7f69f613041e4a4546f07e /isa/Makefile
parentc31d7c5eb4109fdcce58d27b132e20596ece2d07 (diff)
downloadriscv-tests-1f66845b35b4e59e4fb232085f0738913527d0d6.zip
riscv-tests-1f66845b35b4e59e4fb232085f0738913527d0d6.tar.gz
riscv-tests-1f66845b35b4e59e4fb232085f0738913527d0d6.tar.bz2
feature: add autoconf
Diffstat (limited to 'isa/Makefile')
-rw-r--r--isa/Makefile30
1 files changed, 17 insertions, 13 deletions
diff --git a/isa/Makefile b/isa/Makefile
index 3abb3b1..e2c6f32 100644
--- a/isa/Makefile
+++ b/isa/Makefile
@@ -2,12 +2,14 @@
# Makefile for riscv-tests/isa
#-----------------------------------------------------------------------
-include rv64ui/Makefrag
-include rv64uf/Makefrag
-include rv64uv/Makefrag
-include rv64si/Makefrag
-include rv64sv/Makefrag
-include rv32ui/Makefrag
+isa_src_dir := .
+
+include $(isa_src_dir)/rv64ui/Makefrag
+include $(isa_src_dir)/rv64uf/Makefrag
+include $(isa_src_dir)/rv64uv/Makefrag
+include $(isa_src_dir)/rv64si/Makefrag
+include $(isa_src_dir)/rv64sv/Makefrag
+include $(isa_src_dir)/rv32ui/Makefrag
default: all
@@ -20,6 +22,8 @@ RISCV_GCC_OPTS = -nostdlib -nostartfiles
RISCV_OBJDUMP = riscv-objdump --disassemble-all --section=.text --section=.data --section=.bss
RISCV_SIM = spike
+vpath %.S $(isa_src_dir)
+
#------------------------------------------------------------
# Build assembly tests
@@ -35,31 +39,31 @@ RISCV_SIM = spike
define compile_template
$$($(1)_p_tests): $(1)-p-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I../env/p -I./macros/scalar -T../env/p/link.ld $$< -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/p -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/p/link.ld $$< -o $$@
tests += $$($(1)_p_tests)
$$($(1)_pt_tests): $(1)-pt-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I../env/pt -I./macros/scalar -T../env/p/link.ld $$< -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/pt -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/p/link.ld $$< -o $$@
tests += $$($(1)_pt_tests)
$$($(1)_pm_tests): $(1)-pm-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I../env/pm -I./macros/scalar -T../env/pm/link.ld $$< -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/pm -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/pm/link.ld $$< -o $$@
tests += $$($(1)_pm_tests)
$$($(1)_v_tests): $(1)-v-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -std=gnu99 -O2 -I../env/v -I./macros/scalar -T../env/v/link.ld ../env/v/entry.S ../env/v/vm.c $$< -lc -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -std=gnu99 -O2 -I$(isa_src_dir)/../env/v -I$(isa_src_dir)/macros/scalar -T$(isa_src_dir)/../env/v/link.ld $(isa_src_dir)/../env/v/entry.S $(isa_src_dir)/../env/v/vm.c $$< -lc -o $$@
tests += $$($(1)_v_tests)
$$($(1)_p_vec_tests): $(1)-p-vec-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I../env/p -I./macros/vector -T../env/p/link.ld $$< -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/p -I$(isa_src_dir)/macros/vector -T$(isa_src_dir)/../env/p/link.ld $$< -o $$@
tests += $$($(1)_p_vec_tests)
$$($(1)_pt_vec_tests): $(1)-pt-vec-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I../env/pt -I./macros/vector -T../env/pt/link.ld $$< -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -I$(isa_src_dir)/../env/pt -I$(isa_src_dir)/macros/vector -T$(isa_src_dir)/../env/pt/link.ld $$< -o $$@
tests += $$($(1)_pt_vec_tests)
$$($(1)_v_vec_tests): $(1)-v-vec-%: $(1)/%.S
- $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -std=gnu99 -O2 -I../env/v -I./macros/vector -T../env/v/link.ld ../env/v/entry.S ../env/v/vm.c $$< -lc -o $$@
+ $$(RISCV_GCC) $(2) $$(RISCV_GCC_OPTS) -std=gnu99 -O2 -I$(isa_src_dir)/../env/v -I$(isa_src_dir)/macros/vector -T$(isa_src_dir)/../env/v/link.ld $(isa_src_dir)/../env/v/entry.S $(isa_src_dir)/../env/v/vm.c $$< -lc -o $$@
tests += $$($(1)_v_vec_tests)
endef