⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 u-boot-1.1.6 源码包
💻
字号:
## (C) Copyright 2000-2006# Wolfgang Denk, DENX Software Engineering, wd@denx.de.## See file CREDITS for list of people who contributed to this# project.## This program is free software; you can redistribute it and/or# modify it under the terms of the GNU General Public License as# published by the Free Software Foundation; either version 2 of# the License, or (at your option) any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; if not, write to the Free Software# Foundation, Inc., 59 Temple Place, Suite 330, Boston,# MA 02111-1307 USA#ifeq ($(ARCH),ppc)LOAD_ADDR = 0x40000endififeq ($(ARCH),i386)LOAD_ADDR = 0x40000endififeq ($(ARCH),arm)LOAD_ADDR = 0xc100000endififeq ($(ARCH),mips)LOAD_ADDR = 0x80200000 -T mips.ldsendififeq ($(ARCH),nios)LOAD_ADDR = 0x00800000 -L $(gcclibdir)/m32 -T nios.ldsendififeq ($(ARCH),nios2)LOAD_ADDR = 0x02000000 -L $(gcclibdir) -T nios2.ldsendififeq ($(ARCH),m68k)LOAD_ADDR = 0x20000  -L $(clibdir)endififeq ($(ARCH),microblaze)LOAD_ADDR = 0x80F00000endififeq ($(ARCH),blackfin)LOAD_ADDR = 0x1000endififeq ($(ARCH),avr32)LOAD_ADDR = 0x00000000endifinclude $(TOPDIR)/config.mkELF	= hello_worldSREC	= hello_world.srecBIN	= hello_world.binifeq ($(CPU),mpc8xx)ELF	= test_burstSREC	= test_burst.srecBIN	= test_burst.binendififeq ($(ARCH),i386)ELF	+= 82559_eepromSREC	+= 82559_eeprom.srecBIN	+= 82559_eeprom.binendififeq ($(ARCH),ppc)ELF	+= schedSREC	+= sched.srecBIN	+= sched.binendififeq ($(ARCH),blackfin)ELF	+= smc91111_eepromSREC	+= smc91111_eeprom.srecBIN 	+= smc91111_eeprom.binendif# The following example is pretty 8xx specific...ifeq ($(CPU),mpc8xx)ELF	+= timerSREC	+= timer.srecBIN	+= timer.binendif# The following example is 8260 specific...ifeq ($(CPU),mpc8260)ELF	+= mem_to_mem_idma2intrSREC	+= mem_to_mem_idma2intr.srecBIN	+= mem_to_mem_idma2intr.binendif# Demo for 52xx IRQsifeq ($(CPU),mpc5xxx)ELF	+= interruptSREC	+= interrupt.srecBIN	+= interrupt.binendif# Utility for resetting i82559 EEPROMifeq ($(BOARD),oxc)ELF	+= eepro100_eepromSREC	+= eepro100_eeprom.srecBIN	+= eepro100_eeprom.binendififeq ($(BIG_ENDIAN),y)EX_LDFLAGS += -EBendifCOBJS	:= $(SREC:.srec=.o)LIB	= $(obj)libstubs.aLIBAOBJS=ifeq ($(ARCH),ppc)LIBAOBJS+= $(ARCH)_longjmp.o $(ARCH)_setjmp.oendififeq ($(CPU),mpc8xx)LIBAOBJS+= test_burst_lib.oendifLIBCOBJS= stubs.oLIBOBJS	= $(addprefix $(obj),$(LIBAOBJS) $(LIBCOBJS))SRCS	:= $(COBJS:.o=.c) $(LIBCOBJS:.o=.c) $(if $(LIBAOBJS),$(LIBAOBJS:.o=.S))OBJS	:= $(addprefix $(obj),$(COBJS))ELF	:= $(addprefix $(obj),$(ELF))BIN	:= $(addprefix $(obj),$(BIN))SREC	:= $(addprefix $(obj),$(SREC))gcclibdir := $(shell dirname `$(CC) -print-libgcc-file-name`)clibdir := $(shell dirname `$(CC) $(CFLAGS) -print-file-name=libc.a`)CPPFLAGS += -I..all:	$(obj).depend $(OBJS) $(LIB) $(SREC) $(BIN) $(ELF)#########################################################################$(LIB):	$(obj).depend $(LIBOBJS)		$(AR) $(ARFLAGS) $@ $(LIBOBJS)$(ELF):$(obj)%:	$(obj)%.o $(LIB)		$(LD) -g $(EX_LDFLAGS) -Ttext $(LOAD_ADDR) \			-o $@ -e $(notdir $(<:.o=)) $< $(LIB) \			-L$(gcclibdir) -lgcc$(SREC):$(obj)%.srec:	$(obj)%		$(OBJCOPY) -O srec $< $@ 2>/dev/null$(BIN):$(obj)%.bin:	$(obj)%		$(OBJCOPY) -O binary $< $@ 2>/dev/null########################################################################## defines $(obj).depend targetinclude $(SRCTREE)/rules.mksinclude $(obj).depend#########################################################################

⌨️ 快捷键说明

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