makefile
来自「适用于linux2.4版本内核的pppoe监控程序源代码」· 代码 · 共 37 行
TXT
37 行
# ------ compiler# The command to produce a linkable .o file from a .c sourceCC_OBJ = cc -g -c# The command to produce an executable binary.# Gets link jobs only. Does not have to compile .c sources.# The first argument is the target addressCC_BIN = cc -g -o# A list of libraries to be linked with all the programs hereGENERAL_LIBS =# ------- general targetsall: pppoemclean: rm *.o ; strip pppoem# ------- Executablespppoem: pppoem.o $(CC_BIN) pppoem pppoem.o $(GENERAL_LIBS)xpppoem: pppoem.h pppoem.c xpppoem_dir/xpppoem.c ( cd xpppoem_dir ; xmkmf ; make depend ; make )# ------- Linkablespppoem.o: pppoem.h pppoem.c $(CC_OBJ) -DPppoem_use_own_sfilE -DPppoem_use_own_maiN pppoem.c
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?