Files
kernels/third_party/Makefile
Blaise Tine 30d9d3e956 minor update
2021-12-06 13:17:51 -05:00

20 lines
557 B
Makefile

all: fpnew cocogfx softfloat ramulator
fpnew:
cocogfx:
$(MAKE) -C cocogfx
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 -R ../../miscs/patch/ramulator.patch 2> /dev/null
$(MAKE) -C ramulator libramulator.a
clean:
$(MAKE) -C cocogfx clean
$(MAKE) -C softfloat/build/Linux-x86_64-GCC clean
$(MAKE) -C ramulator clean
.PHONY: all fpnew cocogfx softfloat ramulator