mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-06-27 17:01:10 -04:00
+ Microarchitecture optimizations + 64-bit support + Xilinx FPGA support + LLVM-16 support + Refactoring and quality control fixes
17 lines
No EOL
367 B
Makefile
17 lines
No EOL
367 B
Makefile
RTL_DIR=./rtl
|
|
SCRIPT_DIR=./scripts
|
|
|
|
all: config
|
|
|
|
config: VX_config.h VX_types.h
|
|
|
|
VX_config.h: $(RTL_DIR)/VX_config.vh
|
|
$(SCRIPT_DIR)/gen_config.py -i $(RTL_DIR)/VX_config.vh -o VX_config.h
|
|
|
|
VX_types.h: $(RTL_DIR)/VX_types.vh
|
|
$(SCRIPT_DIR)/gen_config.py -i $(RTL_DIR)/VX_types.vh -o VX_types.h
|
|
|
|
clean:
|
|
rm -f VX_config.h VX_types.h
|
|
|
|
.PHONY: VX_config.h VX_types.h |