diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-04-15 12:56:54 -0300 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2015-04-15 12:56:54 -0300 |
commit | 0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b (patch) | |
tree | 212c4d2ac7e269cc9f03f2240e36f865d4ce2493 /.gitignore | |
parent | a8e0fedb3f12ed1ceda7879944606c8e1e7d4a08 (diff) | |
download | blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.tar.gz blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.tar.bz2 blogc-0b694d89cefae8e8ca3422bbdbfbca4d5920ac4b.zip |
initial structure
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 51 |
1 files changed, 43 insertions, 8 deletions
@@ -1,14 +1,49 @@ -# http://www.gnu.org/software/automake +# Object files +*.o +*.ko -Makefile.in +# Libraries +*.lib +*.a -# http://www.gnu.org/software/autoconf +# Shared objects (inc. Windows DLLs) +*.dll +*.so +*.so.* +*.dylib -/autom4te.cache +# Executables +*.exe +*.out +*.app + +# Autotools +Makefile +Makefile.in +.deps +.libs +*.la +*.lo /aclocal.m4 -/compile /configure -/depcomp -/install-sh -/missing +/config.* +/autom4te.cache +/libtool /stamp-h1 +.dirstamp +/build-aux/* + +# installed .m4 files +/m4/*.m4 + +# blogc +/blogc + +# tests +/tests/check_utils + +# leg generated source +/src/template/parser-grammar.c + +# tarballs +blogc-*.tar.* |