mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 05:17:45 -04:00
12 lines
No EOL
211 B
Makefile
12 lines
No EOL
211 B
Makefile
RTL_DIR=./rtl
|
|
SCRIPT_DIR=./scripts
|
|
|
|
all: VX_config.h
|
|
|
|
VX_config.h: $(RTL_DIR)/VX_config.vh
|
|
$(SCRIPT_DIR)/gen_config.py -i $(RTL_DIR)/VX_config.vh -o VX_config.h
|
|
|
|
clean:
|
|
rm -f VX_config.h
|
|
|
|
.PHONY: VX_config.h |