38 lines
1.5 KiB
Plaintext
38 lines
1.5 KiB
Plaintext
![]() |
# ==============================================================================
|
|||
|
# pet_rfm1 makefile
|
|||
|
#FileName: makefile.pt_rfm1
|
|||
|
#Author: xianfeng.du
|
|||
|
#Data: 2022-08-10
|
|||
|
#Description: pet_rfm1 top makefile
|
|||
|
# ==============================================================================
|
|||
|
VERSION = 1.00
|
|||
|
|
|||
|
# ==============================================================================
|
|||
|
# include common makefile Rules
|
|||
|
# ==============================================================================
|
|||
|
include $(MAKE_DIR)/makefile.config
|
|||
|
include $(MAKE_DIR)/makefile.toolchain
|
|||
|
|
|||
|
# ==============================================================================
|
|||
|
# files DIR definition
|
|||
|
# ==============================================================================
|
|||
|
DIRS_LIB_FOLDER += $(DIR_LIB)/rfm_spu
|
|||
|
|
|||
|
LD_FLAGS += -linterrupt
|
|||
|
|
|||
|
#LINK_FILE := $(UCP_INC)/PT_RFM-spu1-noCache.ld
|
|||
|
#LINK_FILE := $(UCP_INC)/rfm-spu1-noCache.ld
|
|||
|
LINK_FILE := $(DIR_MAKE)/rfm-spu1-noCache.ld
|
|||
|
|
|||
|
DIRS_SRC_FOLDER += $(DIR_PET_SPU1)/top
|
|||
|
DIRS_SRC_FOLDER += $(DIR_COMMON)/app
|
|||
|
|
|||
|
# Allow certain files to be excluded from the build
|
|||
|
TOP_SRC_FILE := $(DIR_PET_SPU1)/top/src/phy_init.s.c
|
|||
|
#EXCL_SRCS_FILES := $(TOP_SRC_FILE)
|
|||
|
|
|||
|
# ==============================================================================
|
|||
|
# common: Output Files and Compilation Rules
|
|||
|
# ==============================================================================
|
|||
|
include $(MAKE_DIR)/makefile.common
|