File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ all : pibs pibs-stat
2
+
3
+ pibs-stat : pibs-stat.o libpibs.o memutils.o synseen.o
4
+ gcc -Wall -o pibs-stat pibs-stat.o libpibs.o memutils.o synseen.o -lwiretap ` pkg-config --libs glib-2.0` -lpcap -lhiredis -ggdb
5
+
6
+
7
+ pibs-stat.o : pibs-stat.c
8
+ gcc -D HASHDEBUG=0 -Wall -c pibs-stat.c ` pkg-config --cflags glib-2.0` -I /usr/include/wireshark/wiretap -I /usr/include/wireshark/wsutil -I /usr/include/wireshark ` pkg-config --libs glib-2.0` -I /usr/local/include/hiredis -ggdb
9
+
1
10
pibs : pibs.o memutils.o synseen.o libpibs.o
2
11
gcc -Wall -o pibs pibs.o memutils.o synseen.o libpibs.o -lwiretap ` pkg-config --libs glib-2.0` -lpcap -lhiredis -ggdb
3
12
Original file line number Diff line number Diff line change
1
+ /*
2
+ * pibs - Passive Identification of BackScatter
3
+ *
4
+ * Copyright (C) 2019 Gerard Wagener
5
+ * Copyright (C) 2019 CIRCL Computer Incident Response Center Luxembourg
6
+ * (SMILE gie).
7
+ *
8
+ * This program is free software: you can redistribute it and/or modify
9
+ * it under the terms of the GNU Affero General Public License as published by
10
+ * the Free Software Foundation, either version 3 of the License, or
11
+ * (at your option) any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ * GNU Affero General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU Affero General Public License
19
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
20
+ */
21
+ #include "pibs.h"
22
+ int main (int argc , char * argv [])
23
+ {
24
+ pibs_t * pibs ;
25
+ pibs = init ();
26
+
27
+ return EXIT_SUCCESS ;
28
+ }
You can’t perform that action at this time.
0 commit comments