diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2015-12-03 15:48:33 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2015-12-03 15:48:33 (GMT) |
commit | fa65dbb6d89cf7935b2d6ef5fc087cf502ff0716 (patch) | |
tree | 645bca20a93c1fd2642a089db84018f1c903f98c | |
parent | 65a3cc0348dcf0f6bb10cddfce6138cd5a231391 (diff) |
Extended the definition of files to ignore.
-rw-r--r-- | .gitignore | 47 | ||||
-rw-r--r-- | ChangeLog | 5 |
2 files changed, 46 insertions, 6 deletions
@@ -8,24 +8,59 @@ *.l[ao] # Autoconf & Co -.deps -.libs +.deps/ +.libs/ +ABOUT-NLS +COPYING +INSTALL Makefile Makefile.in +aclocal.m4 +autom4te.cache/ +compile +config.* +configure +depcomp +install-sh +libtool +ltmain.sh +m4/ +missing +stamp-h +stamp-h.in # Flex/Bison -*_gram.c -*_gram.h -*_tok.c +*_gram.[ch] +*_tok.[ch] +ylwrap + +# i18n +gettext.h +po/*.gmo +po/*.header +po/*.pot +po/*.sed +po/*.sin +po/Makefile.in.in +po/POTFILES +po/Rules-quot +po/stamp-po # Python __pycache__ # d2c *.g -.gen +.gen/ fmk.done src/arch/arm/v7/opcodes/ # GLib src/glibext/chrysamarshal.* + +# Binaries +src/chrysalide +tools/d2c/d2c + +# Misc +plugins/python/androperms/androperms.db @@ -1,6 +1,11 @@ 15-12-03 Cyrille Bagard <nocbos@gmail.com> * .gitignore: + Extend the definition of files to ignore. + +15-12-03 Cyrille Bagard <nocbos@gmail.com> + + * .gitignore: Add a '.gitignore' file for the repository. 15-12-01 Cyrille Bagard <nocbos@gmail.com> |