diff options
author | Reuben Thomas <rrt@sc3d.org> | 2016-12-18 19:30:42 +0000 |
---|---|---|
committer | Hubert Figuière <hub@figuiere.net> | 2016-12-19 14:00:09 -0500 |
commit | 08787dfa91d788bb84237cfffc8b44c11114e257 (patch) | |
tree | e3dd946aab0b8a752cad9913bcd1373ce08827e4 | |
parent | 303f3d7c9d99fc898caccd463f5fada69f3dd6f3 (diff) | |
download | enchant-08787dfa91d788bb84237cfffc8b44c11114e257.tar.gz |
Put .gitignore into more standard form
-rw-r--r-- | .gitignore | 53 | ||||
-rw-r--r-- | src/.gitignore | 1 | ||||
-rw-r--r-- | tests/.gitignore | 5 |
3 files changed, 27 insertions, 32 deletions
@@ -1,34 +1,23 @@ -aclocal.m4 -autogen.err -autom4te.cache -autopackage/default.apspec -compile -configure -config.* -depcomp -enchant-uninstalled.pc -enchant.pc -enchant.ps -enchant.spec -install-sh -libtool -ltmain.sh -missing +*.o +*.lo +*.la +.libs +.deps +/aclocal.m4 +/autogen.err +/autom4te.cache +/autopackage/default.apspec +/compile +/configure +/config.* +/depcomp +/enchant-uninstalled.pc +/enchant.pc +/enchant.ps +/enchant.spec +/install-sh +/libtool +/ltmain.sh +/missing Makefile Makefile.in -src/**/*.o -src/**/*.lo -src/**/*.la -src/**/.libs -src/**/.deps -src/libenchant.rc -tests/**/*.o -tests/**/*.lo -tests/**/*.la -tests/**/.libs -tests/**/.deps -tests/enchant -tests/enchant-lsmod -tests/ispell -tests/test-enchant -tests/test-enchantxx diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 0000000..f66b20d --- /dev/null +++ b/src/.gitignore @@ -0,0 +1 @@ +/libenchant.rc diff --git a/tests/.gitignore b/tests/.gitignore new file mode 100644 index 0000000..fa19b7c --- /dev/null +++ b/tests/.gitignore @@ -0,0 +1,5 @@ +/enchant +/enchant-lsmod +/ispell +/test-enchant +/test-enchantxx |