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

📄 makefile

📁 its a full portscan... it works for all type of scanning. here we use libcap
💻
字号:
#
# Dynamic Port Scanner (DPS)
# Makefile - DPS makefile
 
# Copyright (c) 2006 - 2008 AR Samhuri <ar@securebits.org>
# ALL RIGHTS RESERVED.
#

srcdir    = .
bindir    = /usr/bin

CC        = gcc -g
CFLAGS    = -O2 -Wall
OBJECTS   = main.o dps.o util.o
SRC       = main.c dps.c util.c
LIBS      = -lnet -lpcap
CP        = cp
RM        = rm -f

all:	dps

dps:    $(OBJECTS)
	$(CC) $(CFLAGS) -o $@ $(OBJECTS) $(LIBS)

$(OBJECTS):
	$(CC) $(CFLAGS) -c $(SRC)

install:
	$(CP) $(srcdir)/dps $(bindir)

clean:
	$(RM) *.o *~ dps

uninstall:
	clean
	$(RM) $(bindir)/dps

# EOF

⌨️ 快捷键说明

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