⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 * A ncurses user interface. * Network statistics to view the amount of packets and data in many
💻
字号:
CC=gccPRG=sniffRM=rmFLAGS=-pipe -Wall -Wstrict-prototypes#if we are debugingFLAGS+=-g#if we are not#FLAGS+= -O3 -m486 -finline-functions -fkeep-inline-functions -funroll-loops#some libs we needLIBS=-lpthreadLIBS+=-lncurses#Debuging Libs#LIBS+=-lncurses_g#LIBS+=-lefence#some defines we needFLAGS+=-D_REENTRANT -I./headers/INCLUDE=-I./#What stuff needs compiled!OBJS= 	sniff.o 	\	utils/hex.o	\	utils/in_ntoa.o	\	utils/list.o	\	utils/gui.o	\	if.o		\	stat.o		\	log.o		\	gui_main.o	\	ipv4/ip.o	\	ipv4/tcp.o	\	ipv4/tcp_dump.o	\	ipv4/udp.o	\	ipv4/icmp.o	\	arp/arp.o	\	arp/arp_48bit.o	\	arp/arp_gui.o	\	lookup/lookup.o	\	lookup/lookup_gui.o	\	proto/ftp.o	\	proto/http.o \	proto/pop3.oSRCS=$(OBJS:%.o=%.c)all: $(PRG)$(PRG): $(OBJS)	$(CC) $(LDFLAGS) $(OBJS) -o $(PRG) $(LIBS).c.o:	$(CC) $(FLAGS) $(INCLUDE) -c $< -o $@dep: dependdepend:#	gcc -E -MM $(FLAGS) $(INCLUDE) $(SRCS) > .depend	makedepend -f- -Iheaders $(SRCS) > .dependifeq (.depend,$(wildcard .depend))include .dependendifclean: 	-rm -f $(OBJS)	-rm -f $(PRG)	-rm -f core

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -