📄 makefile
字号:
# This is a make file that builds the library for# kernel/lib/stdlib##CC = gccAR = arCFLAGS = -nostdinc -fno-strict-aliasing -fno-builtin -g -Wall -WerrorLD = ldLDFLAGS = -staticINCLUDES = -I../incSTDLIB_OBJS = atol.o environ.o getenv.o panic.o strtol.o strtoul.o \ctype.call: libstdlib.a%.o: Makefile %.c $(CC) -c -o $(*F).o $(CFLAGS) $(INCLUDES) $(*F).clibstdlib.a: Makefile $(STDLIB_OBJS) $(AR) rc libstdlib.a $(STDLIB_OBJS) mv libstdlib.a ..clean: rm -f *.o *.d *.a
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -