📄 makefile
字号:
# 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -