makefile
来自「Adhoc无线网络路由协议源码」· 代码 · 共 39 行
TXT
39 行
# Make file for the demo_router# this is not called recursively# type make in this directoryCC = gcc# the -I flag is needed only if /usr/local/include CFLAGS = -g -O3 -Wall -I /usr/local/include LDLIBS = -lASL# if you are unable to install libASL you can point this # to the location of the libraryLDFLAGS = -L /usr/local/lib#Object filesOBJS = demo_router.o #Rulesall : demo_routerdemo_router : $(OBJS)clean: rm -f *.o core* *~ \#* rm -f demo_router
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?