diff options
author | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-02-11 22:03:14 +0200 |
---|---|---|
committer | Petteri Aimonen <jpa@git.mail.kapsi.fi> | 2013-02-11 22:03:14 +0200 |
commit | 9d3d7b57303c6d6feaa1f7e79d7a09d8b5bacfa2 (patch) | |
tree | 110e4fc8d93e88e988449ab4e9454a0d0638be81 | |
parent | ec4a7a0ccef07266cdd3e309e1d3b7233413142c (diff) |
Add gitignore.
This is a bit bloated gitignore file. Having binaries
in a separate build directory would be cleaner, but I don't
bother to make that change now.
-rw-r--r-- | .gitignore | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dec8b00 --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +*.gcda +*.gcno +*.gcov +*.o +*.pb.c +*.pb.h +*.pb +*~ +*.tar.gz +julkaisu.txt +docs/*.html +docs/generator_flow.png +example/client +example/server +example_avr_double/decode_double +example_avr_double/encode_double +example_avr_double/test_conversions +example_unions/decode +example_unions/encode +generator/nanopb_pb2.pyc +tests/decode_unittests +tests/encode_unittests +tests/test_compiles +tests/test_decode1 +tests/test_decode2 +tests/test_decode3 +tests/test_decode3_buf +tests/test_decode_callbacks +tests/test_encode1 +tests/test_encode2 +tests/test_encode3 +tests/test_encode3_buf +tests/test_encode_callbacks +tests/test_missing_fields +tests/test_multiple_files +tests/bc_decode +tests/bc_encode +tests/breakpoints + |