forked from ntop/PF_RING
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
28 lines (21 loc) · 719 Bytes
/
Copy pathMakefile
File metadata and controls
28 lines (21 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
all:
cd kernel; make
cd userland; ./configure; make
cd drivers; make
install:
cd userland; make install
clean:
-cd kernel; make clean
-cd userland; make clean
-cd drivers; make clean
-cd userland/snort/pfring-daq-module; make clean
snort:
cd userland/snort/pfring-daq-module; autoreconf -ivf; ./configure; make
cd userland/snort/pfring-daq-module-zc; autoreconf -ivf; ./configure; make
tcpdump:
cd userland/tcpdump; ./configure; make
changelog:
git log --since={`curl -s https://github.com/ntop/PF_RING/releases | grep datetime | head -n1 | egrep -o "[0-9]+\-[0-9]+\-[0-9]+"`} --name-only --pretty=format:" - %s" > CHANGELOG.latest
documentation:
cd doc/doxygen; doxygen Doxyfile
cd doc; make html