📄 makefile
字号:
########################################################################### Makefile used for building application.# # The default target (all) builds application in two formats :## appl.rec : Image in S-record format used by the "load" command.# appl.bin : Image in binary format.# appl.elf : Image in ELF format.# appl.map : Linker generated map file.# appl.dis : Disassembly of image.## Other targets are : ## clean : Deletes all files generated by makefile.# depend : Builds dependency file.############################################################################ mips_start_of_legal_notice# # Copyright (c) 2002 MIPS Technologies, Inc. All rights reserved.### Unpublished rights (if any) reserved under the Copyright Laws of the# United States of America.## If this document is provided in source format (i.e., in a modifiable form# such as in FrameMaker or Microsoft Word format), then its use and# distribution is subject to a written agreement with MIPS Technologies,# Inc. ("MIPS Technologies"). UNDER NO CIRCUMSTANCES MAY A DOCUMENT PROVIDED# IN SOURCE FORMAT BE DISTRIBUTED TO A THIRD PARTY WITHOUT THE EXPRESS# WRITTEN CONSENT OF MIPS TECHNOLOGIES.## This document contains information that is proprietary to MIPS# Technologies. Any copying, reproducing, modifying, or use of this# information (in whole or in part) which is not expressly permitted in# writing by MIPS Technologies or a contractually-authorized third party is# strictly prohibited. At a minimum, this information is protected under# unfair competition and copyright laws. Violations thereof may result in# criminal penalties and fines.## MIPS Technologies or any contractually-authorized third party reserves the# right to change the information contained in this document to improve# function, design or otherwise. MIPS Technologies does not assume any# liability arising out of the application or use of this information, or of# any error of omission in such information. Any warranties, whether# express, statutory, implied or otherwise, including but not limited to the# implied warranties of merchantability or fitness for a particular purpose,# are excluded. Any license under patent rights or any other intellectual# property rights owned by MIPS Technologies or third parties shall be# conveyed by MIPS Technologies or any contractually-authorized third party# in a separate license agreement between the parties.## The information contained in this document shall not be exported or# transferred for the purpose of reexporting in violation of any U.S. or# non-U.S. regulation, treaty, Executive Order, law, statute, amendment or# supplement thereto.## The information contained in this document constitutes one or more of the# following: commercial computer software, commercial computer software# documentation or other commercial items. If the user of this information,# or any related documentation of any kind, including related technical data# or manuals, is an agency, department, or other entity of the United States# government ("Government"), the use, duplication, reproduction, release,# modification, disclosure, or transfer of this information, or any related# documentation of any kind, is restricted in accordance with Federal# Acquisition Regulation 12.212 for civilian agencies and Defense Federal# Acquisition Regulation Supplement 227.7202 for military agencies. The use# of this information by the Government is further restricted in accordance# with the terms of the license agreement(s) and/or applicable contract# terms and conditions covering this information from MIPS Technologies or# # mips_end_of_legal_notice# ########################################################################### **********************************************# Endianness# **********************************************ifndef ENDIANENDIAN = ELendif# **********************************************# Tool-chain.# This is the only thing, you have to adapt# to your specific environment.# **********************************************ifndef TOOLCHAINTOOLCHAIN = sdeendififeq ($(TOOLCHAIN),cygnus)CC = mipsisa32-elf-gccLD = mipsisa32-elf-ldOBJ2BIN = mipsisa32-elf-objcopy -O binaryOBJ2REC = mipsisa32-elf-objcopy -O srecOBJDUMP = mipsisa32-elf-objdump -Sifeq ($(ENDIAN),EL)OFORMAT = elf32-littlemipselseOFORMAT = elf32-bigmipsendifendififeq ($(TOOLCHAIN),sde)CC = sde-gccLD = sde-ldOBJ2BIN = sde-objcopy -O binaryOBJ2REC = sde-objcopy -O srecOBJDUMP = sde-objdump -Sifeq ($(ENDIAN),EL)OFORMAT = elf32-littlemipselseOFORMAT = elf32-bigmipsendifendififeq ($(TOOLCHAIN),ghs)ifeq ($(ENDIAN),EL)CC = ccmips -littleendianelseCC = ccmipsendifLD = elxrOBJ2REC = gsrecOBJ2BIN = gmemfileOBJDUMP = gdump -N -ytextendif# **********************************************# Name of application# **********************************************IMAGENAME = appl# **********************************************# Directories# **********************************************ROOT = .SRCDIR = $(ROOT) $(ROOT)/../libVPATH = $(SRCDIR)BINDIR = $(ROOT)TOOLS = $(ROOT)/../tools# **********************************************# Image file names and map, disassembly file# **********************************************IMAGE_BIN = $(IMAGENAME).binIMAGE_REC = $(IMAGENAME).recIMAGE_ELF = $(IMAGENAME).elfIMAGE_MAP = $(IMAGENAME).mapIMAGE_DIS = $(IMAGENAME).dis# **********************************************# Compiler and linker options# **********************************************INCLUDE = -I$(ROOT)/../includeifeq ($(TOOLCHAIN),ghs)CC_OPTS = -c -cpu=mips32_4kc -O2 -embedded_calling_sequence -inline_prologue -sda=all -nostartfiles $(INCLUDE) -D$(ENDIAN)CC_OPTS_A = $(CC_OPTS) -D_ASSEMBLER_ -preprocess_assembly_filesLD_SCRIPT = $(ROOT)/linkghs.lnkLD_OPTS = -T $(LD_SCRIPT) -o $(IMAGE_ELF) -map=$(IMAGE_MAP)OFILE_OPT = -oelseCC_OPTS = -c -g -O2 -$(ENDIAN) $(INCLUDE) -D$(ENDIAN) -mips32ifeq ($(TOOLCHAIN),sde)CC_OPTS_A = $(CC_OPTS) -D_ASSEMBLER_ -no-traditional-cppelseCC_OPTS_A = $(CC_OPTS) -D_ASSEMBLER_endifLD_SCRIPT = $(ROOT)/link.xnLD_OPTS = -T $(LD_SCRIPT) -o $(IMAGE_ELF) -Map $(IMAGE_MAP) -oformat $(OFORMAT)endif# **********************************************# Files to be compiled# **********************************************SRC_C = $(foreach dir, $(SRCDIR), $(wildcard $(dir)/*.c))SRC_S = $(foreach dir, $(SRCDIR), $(wildcard $(dir)/*.S))SRC = $(SRC_C) $(SRC_S)OBJ_C = $(notdir $(patsubst %.c, %.o, $(SRC_C)))OBJ_S = $(notdir $(patsubst %.S, %.o, $(SRC_S)))OBJ = $(OBJ_S) $(OBJ_C)# **********************************************# Rules# **********************************************.PHONY : allall : $(IMAGE_BIN) $(IMAGE_REC) $(IMAGE_DIS)$(IMAGE_BIN) : $(IMAGE_ELF) $(OBJ2BIN) $(IMAGE_ELF) $(OFILE_OPT) $(IMAGE_BIN)$(IMAGE_REC) : $(IMAGE_ELF) $(OBJ2REC) $(IMAGE_ELF) $(OFILE_OPT) $(IMAGE_REC)$(IMAGE_DIS) : $(IMAGE_ELF) $(OBJDUMP) $(IMAGE_ELF) > $(IMAGE_DIS)$(IMAGE_ELF) : $(OBJ) $(LD) $(LD_OPTS) $(OBJ) rm -f $(IMAGENAME).dla rm -f $(IMAGENAME).dnm$(OBJ_C) : %.o : %.c $(CC) $(CC_OPTS) -o $@ $<$(OBJ_S) : %.o : %.S $(CC) $(CC_OPTS_A) -o $@ $<$(IMAGE_ELF) : $(LD_SCRIPT)$(OBJ) : ./makefile.PHONY : clean dependclean : rm -f $(BINDIR)/*.o $(BINDIR)/*.inf $(BINDIR)/$(IMAGENAME).* $(BINDIR)/depend.mkdepend : $(CC) $(INCLUDE) -M $(SRC) > depend.mk-include depend.mk
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -