Skip to content

Commit fc71a08

Browse files
committed
initial commit from 1.02 SVN repo - 2010ish
1 parent cf29855 commit fc71a08

30 files changed

Lines changed: 32897 additions & 2 deletions

CHANGES

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Feb 15, 2010: Incorporated automake/autoconf system from Juergen Leising.
2+
3+
-- 1.02
4+
Feb 12, 2010: Fixed bug in previous update that missed a newline in header.
5+
Feb 12. 2010: Added linux target to Makefile to support large file sizes.
6+
-- 1.01
7+
Feb 12, 2010: Updated output format to reflect new format required by mactime.
8+
-- 1.00
9+
Mar 31, 2003: Changed documents to sleuthkit.org addresses for Source
10+
Forge release.
11+
Jan 29, 2002: Initial public release

COPYING

Lines changed: 340 additions & 0 deletions
Large diffs are not rendered by default.

Makefile.am

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
AUTOMAKE_OPTIONS = foreign
2+
bin_PROGRAMS = mac-robber
3+
EXTRA_DIST = .indent.pro CHANGES
4+
DISTCLEANFILES = *~ core.* *core
5+
mac_robber_SOURCES = mac-robber.c
6+
7+
if DEBUG
8+
AM_CFLAGS = $(MAC_ROBBER_CFLAGS_DEBUG)
9+
mac_robber_CFLAGS = $(MAC_ROBBER_CFLAGS_DEBUG)
10+
else
11+
mac_robber_CFLAGS = $(MAC_ROBBER_CFLAGS)
12+
endif
13+
14+
mac_robber_CPPFLAGS = $(MAC_ROBBER_CPPFLAGS)
15+
16+
if SHARED
17+
mac_robber_LDFLAGS = $(MAC_ROBBER_LDFLAGS_SHARED)
18+
else
19+
mac_robber_LDFLAGS = $(MAC_ROBBER_LDFLAGS_STATIC)
20+
endif
21+
22+
23+
clean-local:
24+
rm -f core.* *core
25+
26+
indent:
27+
indent *.c
28+

0 commit comments

Comments
 (0)