Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ZSShen committed Oct 15, 2014
1 parent a2d043b commit d5b25f1
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,17 @@ or theoretical structures.
* Makefile

#### 1.2 Building Entire Source
Generally, each data structure is wrapped in a single C structure and
is built as an object file. To verify its correctness, we must rely
on the test program which sets up several unit test functions.
+ Generally, each data structure is wrapped in a single C structure and
is built as an object file. To verify its correctness, we must rely
on the test program which sets up several unit test functions.

Therefore, there is a major Makefile at the top of source tree:
For the normal build, execute `make all`.
For the debug build (memory inspection), executre `make all DEBUG=true`.
+ Therefore, there is a major Makefile at the top of source tree:
- For the normal build, execute `make all`.
- For the debug build (memory inspection), executre `make all DEBUG=true`.

+ By running the above command, we compile the object files and the test
programs for all the data structures. Also note that the memory debug
build should be driven by the valgrind utility.

#### 1.3 Building Specific Structure

Expand Down

0 comments on commit d5b25f1

Please sign in to comment.