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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
diff -urN sleuthkit-2.06.orig/src/auxtools/Makefile sleuthkit-2.06/src/auxtools/Makefile
--- sleuthkit-2.06.orig/src/auxtools/Makefile 2006-09-01 18:09:14.000000000 +0200
+++ sleuthkit-2.06/src/auxtools/Makefile 2006-09-09 08:02:10.000000000 +0200
@@ -5,7 +5,7 @@
# OPT = -O
OPT = -O -Wall
DEBUG = -g
-CFLAGS = $(DEFS) $(OPT) $(DEBUG)
+CFLAGS = $(DEFS)
LIBOBJ = mymalloc.o strerror.o split_at.o tsk_endian.o \
data_buf.o tsk_version.o tsk_error.o tsk_parse.o \
tsk_unicode.o tsk_printf.o
diff -urN sleuthkit-2.06.orig/src/disktools/Makefile sleuthkit-2.06/src/disktools/Makefile
--- sleuthkit-2.06.orig/src/disktools/Makefile 2006-09-01 18:09:14.000000000 +0200
+++ sleuthkit-2.06/src/disktools/Makefile 2006-09-09 08:02:25.000000000 +0200
@@ -5,7 +5,7 @@
DEBUG = -g
BIN = ../../bin
PROGS = $(BIN)/disk_stat $(BIN)/disk_sreset
-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. -I ../auxtools/ $(XFLAGS)
+CFLAGS = $(DEFS) $(INCL) -I. -I ../auxtools/ $(XFLAGS)
LIBS = -L../../lib -ltsk
defs:
diff -urN sleuthkit-2.06.orig/src/fstools/Makefile sleuthkit-2.06/src/fstools/Makefile
--- sleuthkit-2.06.orig/src/fstools/Makefile 2006-09-01 18:09:15.000000000 +0200
+++ sleuthkit-2.06/src/fstools/Makefile 2006-09-09 08:02:39.000000000 +0200
@@ -7,7 +7,7 @@
OPT = -O -Wall
DEBUG = -g
INCL = -I../auxtools -I../imgtools
-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG)
+CFLAGS = $(DEFS) $(INCL)
LIBOBJ = fs_inode.o fs_io.o fs_open.o \
fs_dent.o fs_types.o fs_data.o fs_load.o \
ffs.o ffs_dent.o ext2fs.o ext2fs_dent.o ext2fs_journal.o \
diff -urN sleuthkit-2.06.orig/src/hashtools/Makefile sleuthkit-2.06/src/hashtools/Makefile
--- sleuthkit-2.06.orig/src/hashtools/Makefile 2006-09-01 18:09:14.000000000 +0200
+++ sleuthkit-2.06/src/hashtools/Makefile 2006-09-09 08:02:50.000000000 +0200
@@ -5,7 +5,7 @@
DEBUG = -g
BIN = ../../bin
PROGS = $(BIN)/md5 $(BIN)/sha1 $(BIN)/hfind
-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. -I../auxtools $(XFLAGS)
+CFLAGS = $(DEFS) $(INCL) -I. -I../auxtools $(XFLAGS)
LIBOBJ = md5c.o sha1c.o
LIB = ../../lib/libtsk.a
diff -urN sleuthkit-2.06.orig/src/imgtools/Makefile sleuthkit-2.06/src/imgtools/Makefile
--- sleuthkit-2.06.orig/src/imgtools/Makefile 2006-09-01 18:09:16.000000000 +0200
+++ sleuthkit-2.06/src/imgtools/Makefile 2006-09-09 08:03:04.000000000 +0200
@@ -6,7 +6,7 @@
OPT = -O -Wall
DEBUG = -g
INCL = -I../auxtools -I../afflib/lib -I../libewf/src/
-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG)
+CFLAGS = $(DEFS) $(INCL)
LIBOBJ = img_open.o img_types.o raw.o split.o aff.o ewf.o
LIBS = -L../../lib -ltsk -lz -lcrypto
LIB = ../../lib/libtsk.a
diff -urN sleuthkit-2.06.orig/src/mmtools/Makefile sleuthkit-2.06/src/mmtools/Makefile
--- sleuthkit-2.06.orig/src/mmtools/Makefile 2006-09-01 18:09:15.000000000 +0200
+++ sleuthkit-2.06/src/mmtools/Makefile 2006-09-09 08:03:17.000000000 +0200
@@ -6,7 +6,7 @@
OPT = -O -Wall
DEBUG = -g
INCL = -I../auxtools -I../imgtools
-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG)
+CFLAGS = $(DEFS) $(INCL)
LIBOBJ = mm_part.o mm_open.o mm_io.o mm_types.o dos.o mac.o bsd.o sun.o gpt.o
LIBS = -L../../lib -ltsk -lz -lcrypto
LIB = ../../lib/libtsk.a
diff -urN sleuthkit-2.06.orig/src/srchtools/Makefile sleuthkit-2.06/src/srchtools/Makefile
--- sleuthkit-2.06.orig/src/srchtools/Makefile 2006-09-01 18:09:15.000000000 +0200
+++ sleuthkit-2.06/src/srchtools/Makefile 2006-09-09 08:03:30.000000000 +0200
@@ -5,7 +5,7 @@
DEBUG = -g
BIN = ../../bin
PROGS = $(BIN)/srch_strings $(BIN)/sigfind
-CFLAGS = $(DEFS) $(INCL) $(OPT) $(DEBUG) -I. -I ../auxtools $(XFLAGS)
+CFLAGS = $(DEFS) $(INCL) -I. -I ../auxtools $(XFLAGS)
LIBOBJ = srch_strings.o
LIBS = -L../../lib -ltsk
|