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

📄 makefile

📁 Linux内核源代码 为压缩文件 是<<Linux内核>>一书中的源代码
💻
字号:
# $Id: Makefile,v 1.9 1999/04/07 18:45:23 harald Exp $## 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) 1995, 1998 by Ralf Baechle#.S.s:	$(CPP) $(CFLAGS) $< -o $*.s.S.o:	$(CC) $(CFLAGS) -c $< -o $*.oOBJS  = milo.o a.out.o## Some DECstations need all possible sections of an ECOFF executable#ifdef CONFIG_DECSTATION  E2EFLAGS = -aelse  E2EFLAGS =endif## Drop some uninteresting sections in the kernel.# This is only relevant for ELF kernels but doesn't hurt a.out#drop-sections	= .reginfo .mdebugstrip-flags	= $(addprefix --remove-section=,$(drop-sections))all: vmlinux.ecoff addinitrdvmlinux.ecoff:	$(CONFIGURE) elf2ecoff $(TOPDIR)/vmlinux	./elf2ecoff $(TOPDIR)/vmlinux vmlinux.ecoff $(E2EFLAGS)elf2ecoff: elf2ecoff.c	$(HOSTCC) -o $@ $^addinitrd: addinitrd.c	$(HOSTCC) -o $@ $^# Don't build dependencies, this may die if $(CC) isn't gccdep:clean:	rm -f vmlinux.ecoff	rm -f zImage zImage.tmp mkbootmrproper:	rm -f vmlinux.ecoff	rm -f addinitrd	rm -f elf2ecoffzImage:	$(CONFIGURE) mkboot $(TOPDIR)/vmlinux	$(OBJCOPY) $(strip-flags) $(TOPDIR)/vmlinux zImage.tmp	./mkboot zImage.tmp zImage	rm -f zImage.tmpmkboot: mkboot.c	$(HOSTCC) -o $@ $^zdisk: 	zImage	cp $(TOPDIR)/vmlinux $(TOPDIR)/vm	$(STRIP) $(TOPDIR)/vm	gzip -9f $(TOPDIR)/vmdummy:include $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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