Imported Upstream version 1.10
This commit is contained in:
parent
b7e2688ac8
commit
2bb3538023
11 changed files with 1272 additions and 0 deletions
11
makefiles/Makefile-BSDI
Normal file
11
makefiles/Makefile-BSDI
Normal file
|
@ -0,0 +1,11 @@
|
|||
CFLAGS+=-O -g
|
||||
LDLIBS=-lpcap -pthread -lm
|
||||
|
||||
all: dns_flood_detector
|
||||
strip dns_flood_detector
|
||||
clean:
|
||||
rm -rf dns_flood_detector *.o *~
|
||||
install:
|
||||
cp dns_flood_detector /usr/local/sbin/
|
||||
|
||||
dns_flood_detector: dns_flood_detector.c
|
11
makefiles/Makefile-FreeBSD
Normal file
11
makefiles/Makefile-FreeBSD
Normal file
|
@ -0,0 +1,11 @@
|
|||
CFLAGS+=-O -g
|
||||
LDLIBS=-lpcap -pthread -lm
|
||||
|
||||
all: dns_flood_detector
|
||||
strip dns_flood_detector
|
||||
clean:
|
||||
rm -rf dns_flood_detector *.o *~
|
||||
install:
|
||||
cp dns_flood_detector /usr/local/sbin/
|
||||
|
||||
dns_flood_detector: dns_flood_detector.c
|
11
makefiles/Makefile-Linux
Normal file
11
makefiles/Makefile-Linux
Normal file
|
@ -0,0 +1,11 @@
|
|||
CFLAGS=-O -D_BSD_SOURCE -g
|
||||
LDLIBS=-lpcap -lpthread -lm
|
||||
|
||||
all: dns_flood_detector
|
||||
strip dns_flood_detector
|
||||
clean:
|
||||
rm -rf dns_flood_detector *.o *~
|
||||
install:
|
||||
cp dns_flood_detector /usr/local/sbin/
|
||||
|
||||
dns_flood_detector: dns_flood_detector.c
|
11
makefiles/Makefile-OSX
Normal file
11
makefiles/Makefile-OSX
Normal file
|
@ -0,0 +1,11 @@
|
|||
CFLAGS+=-O -g -I/usr/local/include -I/usr/include
|
||||
LDLIBS=-L/usr/local/lib -lpcap -lpthread -lm
|
||||
|
||||
all: dns_flood_detector
|
||||
strip dns_flood_detector
|
||||
clean:
|
||||
rm -rf dns_flood_detector *.o *~
|
||||
install:
|
||||
cp dns_flood_detector /usr/local/sbin/
|
||||
|
||||
dns_flood_detector: dns_flood_detector.c
|
11
makefiles/Makefile-Solaris
Normal file
11
makefiles/Makefile-Solaris
Normal file
|
@ -0,0 +1,11 @@
|
|||
CFLAGS+=-O -g -I/usr/local/include -I/usr/include
|
||||
LDLIBS=-L/usr/local/lib -L/usr/lib -lpcap -lpthread -lm -lsocket -lnsl
|
||||
|
||||
all: dns_flood_detector
|
||||
strip dns_flood_detector
|
||||
clean:
|
||||
rm -rf dns_flood_detector *.o *~
|
||||
install:
|
||||
cp dns_flood_detector /usr/local/sbin/
|
||||
|
||||
dns_flood_detector: dns_flood_detector.c
|
Loading…
Add table
Add a link
Reference in a new issue