From 55f9dc1851fb7a41844960ac5c0673f6c24dd408 Mon Sep 17 00:00:00 2001 From: Sergio Durigan Junior Date: Sat, 15 Mar 2014 17:06:56 -0300 Subject: [PATCH] Adding .gitignore This adds .gitignore and makes it ignore build system files (automatically generated) and object files generated by the compilation. --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c037aae --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +# Build system files +.deps +Makefile +Makefile.in +aclocal.m4 +autom4te.cache +build-aux +config.log +config.status +configure + +# Object files +*.o +rnetclient -- 2.20.1