kbuild
来自「klibc精简化的c程序库」· 代码 · 共 31 行
TXT
31 行
## Kbuild file for resume#static-y := static/resumeshared-y := shared/resume# common .o filesobjs := resume.o resumelib.o# TODO - do we want a stripped version# TODO - do we want the static.g + shared.g directories?# Create lib.a with all object files (used by kinit)lib-y := $(objs)# Additional include paths filesKLIBCCFLAGS += -I$(srctree)/$(src)/..# .o files used to built executablesstatic/resume-y := $(objs)static/resume-lib := ../lib.ashared/resume-y := $(objs)shared/resume-lib := ../lib.a# Cleaningclean-dirs := static shared# install binaryinstall-y := $(shared-y)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?