cvw/tests/fp/vectors/Makefile

17 lines
317 B
Makefile
Raw Normal View History

# Jordan Carlin, jcarlin@hmc.edu, September 20 2024
# Makefile to generate floating point testvectors for CORE-V-Wally
# SPDX-License-Identifier: Apache-2.0 WITH SHL-2.1
2024-09-19 20:38:35 +00:00
.PHONY: ieee riscv clean
all: ieee riscv
2024-09-19 20:38:35 +00:00
ieee:
$(MAKE) -C ieee
riscv:
2024-09-20 23:22:25 +00:00
$(MAKE) -C riscv
clean:
$(MAKE) -C ieee clean
$(MAKE) -C riscv clean