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

📄 makefile

📁 microwindows移植到S3C44B0的源码
💻
字号:
## Makefile for the linux kernel.## Reuse any files we can from the 68328 base#VPATH := $(VPATH):../68328# 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).#.S.o:	$(CC) -D__ASSEMBLY__ $(AFLAGS) -I. -c $< -o $*.oall: $(BOARD)/crt0_$(MODEL).o entry.o platform.oO_TARGET := platform.oobj-y := entry.o config.o signal.o traps.o ints.oobj-$(CONFIG_PM) += pm.o$(BOARD)/crt0_$(MODEL).o: $(BOARD)/crt0_$(MODEL).S $(BOARD)/bootlogo.rhentry.o: entry.S m68k_defs.hm68k_defs.h: ../../kernel/m68k_defs.c ../../kernel/m68k_defs.head	rm -f m68k_defs.d	$(CC) $(filter-out -MD,$(CFLAGS)) -S ../../kernel/m68k_defs.c	cp ../../kernel/m68k_defs.head m68k_defs.h	grep '^#define' m68k_defs.s >> m68k_defs.h	rm m68k_defs.s-include m68k_defs.d$(BOARD)/bootlogo.rh: $(BOARD)/bootlogo.h	perl ../68328/tools/bootlogo.pl < $(BOARD)/bootlogo.h > $(BOARD)/bootlogo.rhinclude $(TOPDIR)/Rules.make

⌨️ 快捷键说明

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