Line 38... |
Line 38... |
|
|
# The root path of the board build
|
# The root path of the board build
|
BOARD_DIR ?=$(CUR_DIR)/../../..
|
BOARD_DIR ?=$(CUR_DIR)/../../..
|
PROJECT_ROOT=$(BOARD_DIR)/../../..
|
PROJECT_ROOT=$(BOARD_DIR)/../../..
|
|
|
DESIGN_NAME=orpsoc
|
DESIGN_NAME ?=orpsoc
|
|
RTL_TOP ?=$(DESIGN_NAME)_top
|
|
|
SYN_DIR=$(BOARD_DIR)/syn/xst
|
SYN_DIR=$(BOARD_DIR)/syn/xst
|
SYN_RUN_DIR=$(SYN_DIR)/run
|
SYN_RUN_DIR=$(SYN_DIR)/run
|
|
|
# Paths to other important parts of this test suite
|
# Paths to other important parts of this test suite
|
Line 218... |
Line 219... |
$(Q)echo "# This file is autogenerated - any changes will be overwritten" >> $@
|
$(Q)echo "# This file is autogenerated - any changes will be overwritten" >> $@
|
$(Q)echo "# See the Makefile in syn/xst/bin to make changes" >> $@
|
$(Q)echo "# See the Makefile in syn/xst/bin to make changes" >> $@
|
$(Q)echo "run" >> $@
|
$(Q)echo "run" >> $@
|
$(Q)echo "-ifn "$(PRJ_FILE) >> $@
|
$(Q)echo "-ifn "$(PRJ_FILE) >> $@
|
$(Q)echo "-ifmt mixed" >> $@
|
$(Q)echo "-ifmt mixed" >> $@
|
$(Q)echo "-top "$(DESIGN_NAME)"_top" >> $@
|
$(Q)echo "-top "$(RTL_TOP) >> $@
|
$(Q)echo "-ofmt NGC" >> $@
|
$(Q)echo "-ofmt NGC" >> $@
|
$(Q)echo "-ofn "$(NGC_FILE) >> $@
|
$(Q)echo "-ofn "$(NGC_FILE) >> $@
|
$(Q)echo "-p "$(FPGA_PART) >> $@
|
$(Q)echo "-p "$(FPGA_PART) >> $@
|
$(Q)echo "-opt_level "$(OPT_LEVEL) >> $@
|
$(Q)echo "-opt_level "$(OPT_LEVEL) >> $@
|
$(Q)echo "-opt_mode "$(OPT_MODE) >> $@
|
$(Q)echo "-opt_mode "$(OPT_MODE) >> $@
|