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

📄 makefile

📁 嵌入式系统设计与实例开发实验教材二源码 多线程应用程序设计 串行端口程序设计 AD接口实验 CAN总线通信实验 GPS通信实验 Linux内核移植与编译实验 IC卡读写实验 SD驱动使
💻
字号:
## 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...all: kernel.o init_task.o pdc_cons.o process.o head.oO_TARGET = kernel.oO_OBJS = # Object file lists.obj-y		:=obj-m		:=obj-n		:=obj-		:=obj-y		+= cache.o setup.o traps.o time.o irq.o \		syscall.o entry.o sys_parisc.o pdc.o ptrace.o hardware.o \		inventory.o drivers.o semaphore.o pa7300lc.o pci-dma.o \		signal.o hpmc.o \		real1.o real2.o led.o parisc_ksyms.oexport-objs	:= parisc_ksyms.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.o.o.S:	$(CC) -D__ASSEMBLY__ $(AFLAGS) -traditional -c $*.S -o $*.o# Translate to Rules.make lists.O_OBJS          := $(filter-out $(export-objs), $(obj-y))OX_OBJS         := $(filter     $(export-objs), $(obj-y))M_OBJS          := $(sort $(filter-out $(export-objs), $(obj-m)))MX_OBJS         := $(sort $(filter     $(export-objs), $(obj-m)))MI_OBJS		:= $(sort $(filter-out $(export-objs), $(int-m)))MIX_OBJS	:= $(sort $(filter     $(export-objs), $(int-m)))include $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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