makefile

来自「linux平台上高级的包嗅探和会话劫持工」· 代码 · 共 42 行

TXT
42
字号
CFLAGS=-Wall -O2 -g -D_REENTRANT#CFLAGS+=-DSYNC_FAST#CFLAGS+=-D_WITH_LINUX_KERNEL_HDRLDFLAGS=#LDFLAGS=-staticOBJ=hunt.o main.o c/list.o c/hash.o c/array.o util.o net.o \	rst.o menu.o hijack.o rstd.o sniff.o macdisc.o \	tap.o arphijack.o tty.o synchijack.o arpspoof.o hostup.o \	addpolicy.o options.o resolv.o timer.o pktrelay.o	hunt: $(OBJ)	$(CC) ${LDFLAGS} -o $@ $^ -lpthreadhunt_static: $(OBJ)	$(CC) ${LDFLAGS} -static -o $@ $^ -lpthreadall: hunt hunt_staticdist: all clean	strip hunt	strip hunt_staticclean:	rm -f *.o core c/*.o c/core c/list_test c/hash_test c/array_test	$(MAKE) -C tpserv clean#	rm -rf .sniff	distclean:	rm -f *.o core c/*.o c/core c/list_test c/hash_test c/array_test	rm -f hunt hunt_static	$(MAKE) -C tpserv distclean#	rm -rf .sniffcleandist: distcleanclean-dist: distcleandist-clean: distclean

⌨️ 快捷键说明

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