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

📄 makefile

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻
字号:
## Makefile for the linux kernel.## Note! Dependencies are done automagically by 'make dep', which also# removes any old dependencies. DON'T put your own dependencies here# unless it's something special (ie not a .c file).## Note 2! The CFLAGS definitions are now in the main makefile...ifdef CONFIG_PARISC64all: kernel.o init_task.o pdc_cons.o process.o head64.o unaligned.o perf.o perf_asm.oelseall: kernel.o init_task.o pdc_cons.o process.o head.o unaligned.oendifO_TARGET = kernel.oobj-y		:=obj-m		:=obj-n		:=obj-		:=obj-y           += cache.o pacache.o setup.o traps.o time.o irq.o \		pa7300lc.o syscall.o entry.o sys_parisc.o firmware.o \		ptrace.o hardware.o inventory.o drivers.o semaphore.o \		signal.o hpmc.o real2.o parisc_ksyms.o unaligned.o \		processor.o power.oexport-objs	:= parisc_ksyms.o superio.o keyboard.oobj-$(CONFIG_SMP) += smp.o irq_smp.oobj-$(CONFIG_PA11) += pci-dma.oobj-$(CONFIG_PCI) += pci.oobj-$(CONFIG_VT) += keyboard.oobj-$(CONFIG_PCI_LBA) += lba_pci.o# I/O SAPIC is also on IA64 platforms.# The two could be merged into a common source some day.obj-$(CONFIG_IOSAPIC) += iosapic.oobj-$(CONFIG_IOMMU_SBA) += sba_iommu.o# Only use one of them: ccio-rm-dma is for PCX-W systems *only*# obj-$(CONFIG_IOMMU_CCIO) += ccio-rm-dma.oobj-$(CONFIG_IOMMU_CCIO) += ccio-dma.oobj-$(CONFIG_CHASSIS_LCD_LED) += led.o obj-$(CONFIG_SUPERIO) += superio.oobj-$(CONFIG_PARISC64) += binfmt_elf32.o sys_parisc32.o \		ioctl32.o signal32.o# only supported for PCX-W/U in 64-bit mode at the momentobj-$(CONFIG_PARISC64) += perf.o perf_asm.oinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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