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

📄 makefile

📁 适用于linux2.4版本内核的pppoe监控程序源代码
💻
字号:
# ------ 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -