📄 makefile
字号:
# Makefile for visitors# Copyright (C) 2004 Salvatore Sanfilippo <antirez@invece.org># All Rights Reserved# Under the GPL license version 2DEBUG?= -gCFLAGS?= -O2 -Wall -WCCOPT= $(CFLAGS)OBJ = visitors.o aht.o antigetopt.o tail.oPRGNAME = visitorsall: visitorsvisitors.o: visitors.c blacklist.hvisitors: $(OBJ) $(CC) -o $(PRGNAME) $(CCOPT) $(DEBUG) $(OBJ).c.o: $(CC) -c $(CCOPT) $(DEBUG) $(COMPILE_TIME) $<clean: rm -rf $(PRGNAME) *.o
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -