Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bbguimaraes
books
Commits
27206f98
Commit
27206f98
authored
Aug 16, 2014
by
bbguimaraes
Browse files
21st_century_c: the end (?)
parent
d4fdff4e
Changes
1
Hide whitespace changes
Inline
Side-by-side
21st_century_c/README
0 → 100644
View file @
27206f98
All examples from the book are contained here. Some changes had to be made to
some of the examples, mainly for style (minor), differences between platforms
and simplifications.
All examples are compilable and testable. Each directory contains examples from
the chapter it's named after and they all have Makefiles to build and test each
example.
The only exception is chapter 12, which requires libapophenia. In order to keep
this repository simple, it was decided not to include the entire library. So,
to compile and test the gsl_distance example, the library must be obtained and
compiled and the Makefile has to be configured (chapter 11 has libapophenia
dependencies too, but the apropriate files were copied form the library).
When the exception above is dealt with, all examples can be built, tested and
cleaned with a shell commands:
$ for i in {1..12}; do make -C $i; done
$ for i in {1..12}; do make -C $i test; done
$ for i in {1..12}; do make -C $i clean; done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment