From 89189d0799a158cab83c564f57aaa9942a4cc19e Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sun, 31 Oct 2010 00:39:05 +0200 Subject: Add .gitignore files Signed-off-by: Jan Engelhardt --- .gitignore | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .gitignore (limited to '.gitignore') diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..444c4b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +.deps +.libs +Makefile +Makefile.in +*.o +*.la +*.lo + +/aclocal.m4 +/autom4te.cache +/config.* +/configure +/depcomp +/install-sh +/libtool +/ltmain.sh +/missing +/ylwrap -- cgit v1.2.3 From ca7ba81e6598069057298fb2b0200ef93e62c313 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 17 Dec 2011 02:58:00 +0100 Subject: Update .gitignore Only ignore these paths if they are a directory. --- .gitignore | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 444c4b3..7de29d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,5 @@ -.deps -.libs +.deps/ +.libs/ Makefile Makefile.in *.o @@ -7,7 +7,7 @@ Makefile.in *.lo /aclocal.m4 -/autom4te.cache +/autom4te.cache/ /config.* /configure /depcomp -- cgit v1.2.3 From e93557848224f68e8cdd3e87e10fdcef987fc051 Mon Sep 17 00:00:00 2001 From: Jan Engelhardt Date: Sat, 17 Dec 2011 03:00:31 +0100 Subject: build: use AC_CONFIG_AUX_DIR and stash away tools --- .gitignore | 6 +----- configure.ac | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 7de29d0..928e44b 100644 --- a/.gitignore +++ b/.gitignore @@ -8,11 +8,7 @@ Makefile.in /aclocal.m4 /autom4te.cache/ +/build-aux/ /config.* /configure -/depcomp -/install-sh /libtool -/ltmain.sh -/missing -/ylwrap diff --git a/configure.ac b/configure.ac index 64d354f..3d536d5 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_INIT(conntrack-tools, 1.0.0, pablo@netfilter.org) +AC_CONFIG_AUX_DIR([build-aux]) AC_CANONICAL_HOST - AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall foreign subdir-objects dist-bzip2 1.6]) -- cgit v1.2.3