Skip to content

Commit

Permalink
Added documentation and comments.
Browse files Browse the repository at this point in the history
Updated build scripts to use autoconf.
  • Loading branch information
scudette committed Jan 31, 2015
1 parent 3b23ad8 commit c8eb9ec
Show file tree
Hide file tree
Showing 38 changed files with 58,524 additions and 128 deletions.
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,12 @@ test_filename.bin
*.zip
src/aff4imager

doxygen/
doxygen/

# autoconf related files.
Makefile
config.log
.deps
.libs
autom4te.cache
config.h
5 changes: 5 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# This file contains a list of people who've made non-trivial contribution
# to the AFF4 C++ project.

Initial design and implementation:
Michael Cohen <scudette@google.com>
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Sun Feb 1 00:35:50 CET 2015 Michael Cohen <scudette@gmail.com>
* Initial release.
16 changes: 16 additions & 0 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
BUILDING
========

* Build the required prerequisite libraries.

* Build and install the AFF4 library:
$ ./configure
$ make
$ make install


TESTING
=======

* Build and run the tests:
$ make check
4 changes: 4 additions & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
ACLOCAL_AMFLAGS = -I m4

SUBDIRS = src
dist_doc_DATA = README.md
Loading

0 comments on commit c8eb9ec

Please sign in to comment.