From 64b2c1bc97c9e1f9f609f11a93b553b4d84c1c4b Mon Sep 17 00:00:00 2001 From: "Peter A. Bigot" Date: Fri, 16 May 2014 08:43:07 -0500 Subject: [PATCH] gitignore: ignore files generated by running make --- .gitignore | 8 +++++++- bindings/perl-piped/.gitignore | 4 ++++ bindings/perl-shared/.gitignore | 6 ++++++ bindings/python/.gitignore | 2 ++ bindings/tcl/.gitignore | 3 +++ examples/.gitignore | 3 +++ src/.gitignore | 7 +++++++ 7 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 bindings/perl-piped/.gitignore create mode 100644 bindings/perl-shared/.gitignore create mode 100644 bindings/python/.gitignore create mode 100644 examples/.gitignore create mode 100644 src/.gitignore diff --git a/.gitignore b/.gitignore index 28caa2b0..b859e1c7 100644 --- a/.gitignore +++ b/.gitignore @@ -40,7 +40,6 @@ Makefile /config.status /etc/rrdcached.service /etc/rrdcached.socket -/examples/*.pl /libtool /rrd_config.h /src/librrd.pc @@ -64,3 +63,10 @@ Makefile #vim swp file *.swp + +# generated documentation files +/doc/*.txt +/doc/*.html +/doc/*.1 +/doc/*.3 +/doc/pod2*.tmp diff --git a/bindings/perl-piped/.gitignore b/bindings/perl-piped/.gitignore new file mode 100644 index 00000000..741a4bf4 --- /dev/null +++ b/bindings/perl-piped/.gitignore @@ -0,0 +1,4 @@ +# generated files +/MYMETA.yml +/blib/ +/pm_to_blib diff --git a/bindings/perl-shared/.gitignore b/bindings/perl-shared/.gitignore new file mode 100644 index 00000000..3d484376 --- /dev/null +++ b/bindings/perl-shared/.gitignore @@ -0,0 +1,6 @@ +# generated files +/MYMETA.yml +/RRDs.bs +/RRDs.c +/blib/ +/pm_to_blib diff --git a/bindings/python/.gitignore b/bindings/python/.gitignore new file mode 100644 index 00000000..fbb1ecc4 --- /dev/null +++ b/bindings/python/.gitignore @@ -0,0 +1,2 @@ +# generated files +/build/ diff --git a/bindings/tcl/.gitignore b/bindings/tcl/.gitignore index 8636387b..ec8d6b05 100644 --- a/bindings/tcl/.gitignore +++ b/bindings/tcl/.gitignore @@ -1,3 +1,6 @@ # autoconf generated files /ifCOC /ifOctets.tcl +## enh-gitignore +/pkgIndex.tcl +/tclrrd1.4.999.so diff --git a/examples/.gitignore b/examples/.gitignore new file mode 100644 index 00000000..2a257371 --- /dev/null +++ b/examples/.gitignore @@ -0,0 +1,3 @@ +# autoconf generated files +/*.pl +/cgi-demo.cgi diff --git a/src/.gitignore b/src/.gitignore new file mode 100644 index 00000000..d0ac56e3 --- /dev/null +++ b/src/.gitignore @@ -0,0 +1,7 @@ +# build-generated files +/.libs/ +/librrd.sym +/rrdcached +/rrdcgi +/rrdtool +/rrdupdate -- 2.47.2