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

📄 makefile

📁 根据添加了fs2410平台的arch目录
💻
字号:
# BK Id: SCCS/s.Makefile 1.7 06/15/01 13:16:10 paulus###    Module name: Makefile##    Description:#      Makefile for the IBM "tree" evaluation board Linux kernel#      boot loaders.###    Copyright (c) 1999 Grant Erickson <grant@lcse.umn.edu># #    PPC-405 modification#    	Copyright 2000-2001 MontaVista Software Inc.#    	Author: MontaVista Software, Inc.#          	frank_rowand@mvista.com or source@mvista.com#  	   	debbie_chu@mvista.com# HOSTCFLAGS = -O -I$(TOPDIR)/includeCC      = $(CROSS_COMPILE)gccLD      = $(CROSS_COMPILE)ldOBJCOPY = $(CROSS_COMPILE)objcopyOBJDUMP = $(CROSS_COMPILE)objdumpGZIP	= gzip -vf9RM	= rm -fMKEVIMG	= ../utils/mkevimg -l -cMKIRIMG	= ../utils/mkirimgCFLAGS	+= -I$(TOPDIR)/drivers/netLD_ARGS = -e _start -T ld.script -Ttext 0x00200000 -BstaticOBJS	= ../common/crt0.o main.o misc.o irSect.o ../common/string.o \		../common/misc-common.o ../common/ns16550.oLIBS	= ../lib/zlib.atreeboot: $(OBJS) $(LIBS) ld.script	$(LD) -o $@ $(LD_ARGS) $(OBJS) $(LIBS)zImage:	vmlinux.imgzImage.initrd: vmlinux.initrd.imgtreeboot.image: treeboot	$(OBJCOPY) --add-section=image=../images/vmlinux.gz treeboot $@treeboot.initrd: treeboot.image ramdisk.image.gz	$(OBJCOPY) --add-section=initrd=ramdisk.image.gz treeboot.image $@vmlinux.img: treeboot.image	$(OBJDUMP) --syms treeboot.image | grep irSectStart > irSectStart.txt	$(MKIRIMG) treeboot.image treeboot.image.out irSectStart.txt	$(MKEVIMG) treeboot.image.out ../images/vmlinux.tree.img	$(RM) treeboot.image treeboot.image.out irSectStart.txtvmlinux.initrd.img: treeboot.initrd	$(OBJDUMP) --all-headers treeboot.initrd | grep irSectStart > irSectStart.txt	$(MKIRIMG) treeboot.initrd treeboot.initrd.out irSectStart.txt	$(MKEVIMG) treeboot.initrd.out ../images/vmlinux.tree.initrd.img	$(RM) treeboot.initrd treeboot.initrd.out irSectStart.txtclean:	rm -f treeboot treeboot.image treeboot.initrd irSectStart.txt vmlinux.*include $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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