makefile

来自「实现一个简单的单进程内核,。该内核启用二级虚拟页表映射」· 代码 · 共 27 行

TXT
27
字号
# This is a make file that builds the library for# kernel/user/lib/stdio##CC = gccAR = arCFLAGS = -nostdinc -fno-strict-aliasing -fno-builtin -Wall -Werror -gOBJCOPY = objcopyINCLUDES    = -I../inc -I../../incSTDIO_OBJS = doprnt.o doscan.o printf.o putchar.o puts.o sprintf.o \             sscanf.oall: libstdio.a%.o: Makefile %.c	$(CC) -c -o $(*F).o $(CFLAGS) $(INCLUDES) -DDOPRNT_FLOATS $(*F).c	$(OBJCOPY) -R .comment -R .note $(*F).o $(*F).olibstdio.a: Makefile $(STDIO_OBJS)	$(AR) rc libstdio.a $(STDIO_OBJS)	mv libstdio.a ..clean:	rm -f *.o *.d *.a

⌨️ 快捷键说明

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