📄 makefile
字号:
SHELL = /bin/sh#BIN = ../../binBIN = .TCP_SRC = tcp_scan.c find_addr.c mallocs.c non_blocking.c \ print_data.c open_limit.c error.c strerror.cTCP_OBJ = tcp_scan.o find_addr.o mallocs.o non_blocking.o \ print_data.o open_limit.o error.o strerror.oUDP_SRC = udp_scan.c find_addr.c mallocs.c open_limit.c error.c ring.c \ strerror.cUDP_OBJ = udp_scan.o find_addr.o mallocs.o open_limit.o error.o ring.o \ strerror.oCFLAGS = -O $(XFLAGS)FILES = README tcp_scan.1 error.c find_addr.c lib.h makefile mallocs.c \ non_blocking.c open_limit.c print_data.c tcp_scan.c udp_scan.c ring.c \ strerror.oPROGS = $(BIN)/tcp_scan $(BIN)/udp_scan#LIBS = -lsocket -lnslall: $(PROGS)$(BIN)/tcp_scan: $(TCP_OBJ) $(CC) $(CFLAGS) -o $@ $(TCP_OBJ) $(LIBS)$(BIN)/udp_scan: $(UDP_OBJ) $(CC) $(CFLAGS) -o $@ $(UDP_OBJ) $(LIBS)shar: @shar $(FILES)lint: lint $(TCP_SRC) lint $(UDP_SRC)clean: rm -f *.o $(PROGS) core
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -