?? makefile
字號:
CFLAGS = -Wall -Werror -gINCLUDE = -I ../includeLIBDIR = -L../liball: serverserver: server.o addRule.o showTable.o checkEntry.o $(CC) $(CFLAGS) $(LIBDIR) -lfirewall -o server server.o addRule.o showTable.o checkEntry.oserver.o: server.c ../include/firewall.h ../include/server.h ../include/firewall.h $(CC) $(CFLAGS) $(INCLUDE) -c server.caddRule.o: addRule.c ../include/firewall.h ../include/server.h $(CC) $(CFLAGS) $(INCLUDE) -c addRule.cshowTable.o: showTable.c ../include/firewall.h ../include/server.h ../include/firewall.h $(CC) $(CFLAGS) $(INCLUDE) -c showTable.ccheckEntry.o: checkEntry.c ../include/firewall.h ../include/server.h ../include/firewall.h $(CC) $(CFLAGS) $(INCLUDE) -c checkEntry.cclean: rm -f server *.o
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -