diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2009-10-22 12:34:20 -0400 |
---|---|---|
committer | Gaetan Nadon <memsize@videotron.ca> | 2009-10-22 12:34:20 -0400 |
commit | 28830993636cc5820842345b511d301af33d9c49 (patch) | |
tree | 0073a95c93a8d493ea8b31c58af507da03e018db | |
parent | 97d677746cd70ec9eb1f33483cc829a0063953bc (diff) |
.gitignore: use common defaults with custom section # 24239
Using common defaults will reduce errors and maintenance.
Only the very small or inexistent custom section need periodic maintenance
when the structure of the component changes. Do not edit defaults.
-rw-r--r-- | .gitignore | 74 | ||||
-rw-r--r-- | src/.gitignore | 8 |
2 files changed, 62 insertions, 20 deletions
@@ -1,30 +1,78 @@ -.deps -.libs +# +# X.Org module default exclusion patterns +# The next section if for module specific patterns +# +# Do not edit the following section +# GNU Build System (Autotools) aclocal.m4 -autom4te.cache +autom4te.cache/ +autoscan.log +ChangeLog +compile config.guess config.h config.h.in config.log +config-ml.in +config.py config.status +config.status.lineno config.sub configure -configure.lineno +configure.scan depcomp -pciaccess.pc +.deps/ +INSTALL install-sh +.libs/ libtool +libtool.m4 ltmain.sh +lt~obsolete.m4 +ltoptions.m4 +ltsugar.m4 +ltversion.m4 Makefile Makefile.in +mdate-sh missing mkinstalldirs -scanpci -stamp-h1 +*.pc +py-compile +stamp-h? +symlink-tree +texinfo.tex +ylwrap + +# Do not edit the following section +# Edit Compile Debug Document Distribute *~ -*.o -*.la -*.lo -libpciaccess-*.tar.* -ChangeLog -tags +*.[0-9] +*.[0-9]x +*.bak +*.bin +core +*.dll +*.exe +*-ISO*.bdf +*-JIS*.bdf +*-KOI8*.bdf +*.kld +*.ko +*.ko.cmd +*.lai +*.l[oa] +*.[oa] +*.obj +*.patch +*.so +*.pcf.gz +*.pdb +*.tar.bz2 +*.tar.gz +# +# Add & Override patterns for libpciaccess +# +# Edit the following section as needed +# For example, !report.pc overrides *.pc. See 'man gitignore' +# diff --git a/src/.gitignore b/src/.gitignore index d32b6ba..5c8b286 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -1,8 +1,2 @@ -.deps -.libs -*.lo -*.o -libpciaccess.la -Makefile -Makefile.in +# Add & Override for this directory and it's subdirectories scanpci |