Removed
Link Here
|
1 |
--- src/Makefile.orig Mon Jan 8 05:56:59 2001 |
2 |
+++ src/Makefile Tue Jul 15 18:19:58 2003 |
3 |
@@ -1,36 +1,36 @@ |
4 |
-CIDIR=-I/usr/include/pcap |
5 |
+#CIDIR=-I/usr/include/pcap |
6 |
|
7 |
#LIB=../../libpcap-0.5/libpcap.a |
8 |
LIB=-lpcap |
9 |
|
10 |
-all: ipaudit total ipstrings beta-dir |
11 |
+all: ipaudit total ipstrings |
12 |
|
13 |
ipaudit: ipaudit.o hash.o |
14 |
- $(CC) -o ipaudit ipaudit.o hash.o $(LIB) |
15 |
+ $(CC) $(CFLAGS) -o ipaudit ipaudit.o hash.o $(LIB) |
16 |
|
17 |
total: total.o hash.o |
18 |
- $(CC) -o total total.o hash.o -lm |
19 |
+ $(CC) $(CFLAGS) -o total total.o hash.o -lm |
20 |
|
21 |
ipstrings: ipstrings.o |
22 |
- $(CC) -o ipstrings ipstrings.o $(LIB) |
23 |
+ $(CC) $(CFLAGS) -o ipstrings ipstrings.o $(LIB) |
24 |
|
25 |
ipaudit.o: ipaudit.c hash.h |
26 |
- $(CC) -c ipaudit.c $(CIDIR) $(DFLAGS) |
27 |
+ $(CC) $(CFLAGS) -c ipaudit.c $(CIDIR) $(DFLAGS) |
28 |
|
29 |
hash.o: hash.c hash.h |
30 |
- $(CC) -c hash.c |
31 |
+ $(CC) $(CFLAGS) -c hash.c |
32 |
|
33 |
total.o: total.c hash.c hash.h |
34 |
- $(CC) -c total.c |
35 |
+ $(CC) $(CFLAGS) -c total.c |
36 |
|
37 |
ipstrings.o: ipstrings.c |
38 |
- $(CC) -c ipstrings.c $(CIDIR) $(DFLAGS) |
39 |
+ $(CC) $(CFLAGS) -c ipstrings.c $(CIDIR) $(DFLAGS) |
40 |
|
41 |
iprange: iprange.c |
42 |
$(CC) -g -o iprange iprange.c |
43 |
|
44 |
-beta-dir: |
45 |
- $(MAKE) -C beta |
46 |
+#beta-dir: |
47 |
+# $(MAKE) -C beta |
48 |
|
49 |
clean: |
50 |
rm -f *.o |