📄 makefile
字号:
# s390/Makefile## This file is included by the global makefile so that you can add your own# architecture-specific flags and dependencies. Remember to do have actions# for "archclean" and "archdep" for cleaning up and making dependencies for# this architecture## 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) 1994 by Linus Torvalds#LD=$(CROSS_COMPILE)ld -m elf_s390CPP=$(CC) -EOBJCOPY=$(CROSS_COMPILE)objcopy -O binary -R .note -R .comment -SLDFLAGS=-e startifeq ($(CONFIG_SHARED_KERNEL),y)LINKFLAGS =-T $(TOPDIR)/arch/s390/vmlinux-shared.lds $(LDFLAGS)elseLINKFLAGS =-T $(TOPDIR)/arch/s390/vmlinux.lds $(LDFLAGS)endifCFLAGS_PIPE := -pipeCFLAGS_NSR := -fno-strength-reduceCFLAGS := $(CFLAGS) $(CFLAGS_PIPE) $(CFLAGS_NSR)HEAD := arch/s390/kernel/head.o arch/s390/kernel/init_task.oSUBDIRS := $(SUBDIRS) arch/s390/mm arch/s390/kernel arch/s390/lib \ drivers/s390 arch/s390/math-emuCORE_FILES := arch/s390/mm/mm.o arch/s390/kernel/kernel.o $(CORE_FILES)DRIVERS := $(DRIVERS) drivers/s390/io.oLIBS := $(TOPDIR)/arch/s390/lib/lib.a $(LIBS) $(TOPDIR)/arch/s390/lib/lib.aifeq ($(CONFIG_MATHEMU),y) CORE_FILES := $(CORE_FILES) arch/s390/math-emu/math-emu.oendifall: image listinglisting: vmlinux @$(MAKEBOOT) listingarch/s390/kernel: dummy $(MAKE) linuxsubdirs SUBDIRS=arch/s390/kernelarch/s390/mm: dummy $(MAKE) linuxsubdirs SUBDIRS=arch/s390/mmdrivers/s390: dummy $(MAKE) linuxsubdirs SUBDIRS=drivers/s390MAKEBOOT = $(MAKE) -C arch/$(ARCH)/bootimage: vmlinux @$(MAKEBOOT) imagearchclean: @$(MAKEBOOT) cleanarchmrproper:archdep: @$(MAKEBOOT) depinstall: vmlinux @$(MAKEBOOT) BOOTIMAGE=image install
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -