sample-gcc.mak

来自「brew 培训的sample source code」· MAK 代码 · 共 29 行

MAK
29
字号
#============================================================================
#  Name:
#    sample.mak
#
#  Description:
#    Makefile to build the $(TARGET) downloadable module.
#
#   The following targets are available in this makefile:
#
#     all           - make .elf and .mod image files (default)
#     clean         - delete object directory and image files
#
#   The above targets can be made with the following command:
#
#	  make -f sample.mak [target]
#
#  Assumptions:
#    1. gnu tools is installed on your machine and is in the path.  
#    2. GCCHOMEPATH points to location where GNU tools are installed.
#
#  Notes:
#    1. You might need to modify the GCCHOMEPATH, GCCBINPATH, ELF2MODTOOLPATH 
#		and LIBDIRS variable below.
#    2. While building the application using this make file, the following
#		warnings may be received. They can be safely ignored:
#		"Warning: _divsi3.o does not support interworking, whereas <Your App>.elf does not"
#		"Warning: _dvmd_tls.o does not support interworking, whereas <Your App>.elf does not"
#
#        Copyright 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?