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

📄 makefile

📁 最早的linux操作系统源代码(3)
💻
字号:
CC	=gccCFLAGS	=-O -Wall -fstrength-reduce -fomit-frame-pointer \	-finline-functions -nostdinc -I../includeAS	=asAR	=arLD	=ldCPP	=cpp -nostdinc -I../include.c.o:	$(CC) $(CFLAGS) \	-c -o $*.o $<.s.o:	$(AS) -o $*.o $<.c.s:	$(CC) $(CFLAGS) \	-S -o $*.s $<OBJS	= memory.o page.oall: mm.omm.o: $(OBJS)	$(LD) -r -o mm.o $(OBJS)clean:	rm -f core *.o *.a tmp_make	for i in *.c;do rm -f `basename $$i .c`.s;donedep:	sed '/\#\#\# Dependencies/q' < Makefile > tmp_make	(for i in *.c;do $(CPP) -M $$i;done) >> tmp_make	cp tmp_make Makefile### Dependencies:memory.o : memory.c ../include/signal.h ../include/sys/types.h \  ../include/linux/config.h ../include/linux/head.h ../include/linux/kernel.h \  ../include/asm/system.h 

⌨️ 快捷键说明

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