📄 rules.make
字号:
## 68EZ328/Makefile## This file is included by the global makefile so that you can add your own# platform-specific flags and dependencies.## This file is subject to the terms and conditions of the GNU General Public# License. See the file "COPYING" in the main directory of this archive# for more details.## Copyright (c) 2000,2001 Lineo, Inc. <jeff@lineo.ca> # Copyright (c) 1998,1999 D. Jeff Dionne <jeff@uclinux.org># Copyright (C) 1998 Kenneth Albanowski <kjahds@kjahds.com># Copyright (C) 1994 by Hamish Macdonald#GCC_DIR = $(shell $(CC) -v 2>&1 | grep specs | sed -e 's/.* \(.*\)specs/\1\./')INCGCC = $(GCC_DIR)/includeLIBGCC = $(GCC_DIR)/m68000/libgcc.aCFLAGS := -fno-builtin -DNO_CACHE $(CFLAGS) -pipe -DNO_MM -DNO_FPU -DNO_CACHE -m68000 -D__ELF__ -DMAGIC_ROM_PTR -DNO_FORGET -DUTS_SYSNAME=\"uClinux\" -D__linux__AFLAGS := $(AFLAGS) -pipe -DNO_MM -DNO_FPU -DNO_CACHE -m68000 -D__ELF__ -DMAGIC_ROM_PTR -DUTS_SYSNAME=\"uClinux\" -Wa,--bitwise-orLINKFLAGS = -T arch/$(ARCH)/platform/$(PLATFORM)/$(BOARD)/$(MODEL).ldHEAD := arch/$(ARCH)/platform/$(PLATFORM)/$(BOARD)/crt0_$(MODEL).oSUBDIRS := arch/$(ARCH)/kernel arch/$(ARCH)/mm arch/$(ARCH)/lib \ arch/$(ARCH)/platform/$(PLATFORM) $(SUBDIRS)CORE_FILES := arch/$(ARCH)/kernel/kernel.o arch/$(ARCH)/mm/mm.o \ arch/$(ARCH)/platform/$(PLATFORM)/platform.o $(CORE_FILES)LIBS += arch/$(ARCH)/lib/lib.a $(LIBGCC)ifdef CONFIG_FRAMEBUFFERSUBDIRS := $(SUBDIRS) arch/$(ARCH)/consoleARCHIVES := $(ARCHIVES) arch/$(ARCH)/console/console.aendifMAKEBOOT = $(MAKE) -C arch/$(ARCH)/bootromfs.s19: romfs.img arch/$(ARCH)/empty.o $(CROSS_COMPILE)objcopy -v -R .text -R .data -R .bss --add-section=.fs=romfs.img --adjust-section-vma=.fs=0xa0000 arch/$(ARCH)/empty.o romfs.s19 $(CROSS_COMPILE)objcopy -O srec romfs.s19linux.data: linux $(CROSS_COMPILE)objcopy -O binary --remove-section=.romvec --remove-section=.text --remove-section=.ramvec --remove-section=.bss --remove-section=.eram linux linux.datalinux.text: linux $(CROSS_COMPILE)objcopy -O binary --remove-section=.ramvec --remove-section=.bss --remove-section=.data --remove-section=.eram --set-section-flags=.romvec=CONTENTS,ALLOC,LOAD,READONLY,CODE linux linux.textromfs.img: echo creating a vmlinux rom image without root filesystem!linux.bin: linux.text linux.data romfs.img if [ -f romfs.img ]; then\ cat linux.text linux.data romfs.img > linux.bin;\ else\ cat linux.text linux.data > linux.bin;\ filinux.trg linux.rom: linux.bin perl arch/$(ARCH)/platform/$(PLATFORM)/tools/fixup.plarchclean: @$(MAKEBOOT) clean rm -f arch/$(ARCH)/platform/$(PLATFORM)/m68k_defs.h rm -f linux.text linux.data linux.bin linux.rom linux.trg rm -f linux.s19 romfs.s19 rm -f linux.img romdisk.img
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -