Files
kernels/third_party/Makefile
Blaise Tine d47cccc157 Vortex 2.0 changes:
+ Microarchitecture optimizations
+ 64-bit support
+ Xilinx FPGA support
+ LLVM-16 support
+ Refactoring and quality control fixes
2023-10-19 20:51:22 -07:00

16 lines
488 B
Makefile

all: fpnew softfloat ramulator
fpnew:
softfloat:
SPECIALIZE_TYPE=RISCV SOFTFLOAT_OPTS="-fPIC -DSOFTFLOAT_ROUND_ODD -DINLINE_LEVEL=5 -DSOFTFLOAT_FAST_DIV32TO16 -DSOFTFLOAT_FAST_DIV64TO32" $(MAKE) -C softfloat/build/Linux-x86_64-GCC
ramulator:
cd ramulator && git apply ../../miscs/patch/ramulator.patch 2> /dev/null; true
$(MAKE) -C ramulator libramulator.a
clean:
$(MAKE) -C softfloat/build/Linux-x86_64-GCC clean
$(MAKE) -C ramulator clean
.PHONY: all fpnew softfloat ramulator