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

📄 makefile

📁 实现一个简单的单进程内核,。该内核启用二级虚拟页表映射
💻
字号:
# This is a make file that builds the library for# kernel/lib/string##CC = gccAR = arCFLAGS = -nostdinc -fno-strict-aliasing -fno-builtin -Wall -Werror -gOBJCOPY = objcopyINCLUDES    = -I../inc -I../../incSTRING_OBJS = bcmp.o bcopy.o bzero.o memchr.o memcmp.o memset.o \              rindex.o strcasecmp.o strcat.o strchr.o strcmp.o  \              strcpy.o strcspn.o strdup.o strlen.o strncat.o    \              strncmp.o strncpy.o strpbrk.o strrchr.o strsep.o  \              strspn.o strstr.o strtok.o strtok_r.o all: libstring.a%.o: Makefile %.c	$(CC) -c -o $(*F).o $(CFLAGS) $(INCLUDES) $(*F).c	$(OBJCOPY) -R .comment -R .note $(*F).o $(*F).o%.o: Makefile %.S	$(CC) -c -o $(*F).o $(CFLAGS) $(INCLUDES) $(*F).S	$(OBJCOPY) -R .comment -R .note $(*F).o $(*F).olibstring.a: Makefile $(STRING_OBJS)	$(AR) rc libstring.a $(STRING_OBJS)	mv libstring.a ..clean:	rm -f *.o *.d *.a

⌨️ 快捷键说明

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