diff options
author | John Beard <johnb@codexdigital.com> | 2014-10-16 12:52:53 +0100 |
---|---|---|
committer | John Beard <johnb@codexdigital.com> | 2014-10-16 12:57:15 +0100 |
commit | 2853cd4a10febda5ba7407e2e8570eae411761a6 (patch) | |
tree | f22c99aeb66f267aa9404f440bf966488afc2ca7 /.gitignore | |
parent | 20e0a61ff6237709b285daec4337fd241e578dd2 (diff) |
Add .gitignore file
Includes files generated by each of:
* autogen.sh
* configure
* make
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..471d4fc8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +# autogen.sh-generated files +Makefile.in +src/Makefile.in +config.guess +config.h.in +config.sub +configure +depcomp +install-sh +ltmain.sh +missing + +aclocal.m4 +m4/libtool.m4 +m4/ltoptions.m4 +m4/ltsugar.m4 +m4/ltversion.m4 +m4/lt~obsolete.m4 + +# downloaded files +gtest + +# in-tree configure-generated files +Makefile +src/Makefile +config.h +config.log +config.status + +libtool +protobuf-lite.pc +protobuf.pc +**/.deps +stamp-h1 + +# in-tree build products +**/*.o +**/*.lo +**/*.la +src/.libs + +**/.dirstamp + +**/unittest*.pb.* +**/cpp_test*.pb.* + +src/protoc +src/unittest_proto_middleman + |