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

📄 makefile

📁 操作系统试验!通过这个试验
💻
字号:
# This is a make file that builds the library for# kernel/lib/kerndebug##CC = gccAR = arCFLAGS = -nostdinc -fno-strict-aliasing -fno-builtin -g -Wall -WerrorLD = ldLDFLAGS = -staticINCLUDES    = -I../inc -I../inc/x86DEBUG_OBJS = kerndebug.oall: libdebug.a%.o: Makefile %.S	$(CC) -c -o $(*F).o $(CFLAGS) $(INCLUDES) $(*F).Slibdebug.a: Makefile $(DEBUG_OBJS)	$(AR) rc libdebug.a $(DEBUG_OBJS)	mv libdebug.a ..clean:	rm -f *.o *.d *.a

⌨️ 快捷键说明

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