diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2013-07-06 15:40:41 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2013-07-06 15:40:41 -0400 |
commit | 74be341f849637f9471a71df8a2864dc01f5f20c (patch) | |
tree | 1b2a7804da7545be3ee46c440c9f603456136abf | |
parent | 74104582e27ef76790c9d954464b53b0e45a2b43 (diff) | |
download | libsandglass-master.tar.xz |
-rw-r--r-- | .gitignore | 12 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 15 insertions, 3 deletions
@@ -1,4 +1,4 @@ -# Files and folders created by aclocal, autoconf, automake, and libtoolize +# Files and folders created by ./autogen.sh, and ./configure /aclocal.m4 /autom4te.cache/ /compile @@ -10,6 +10,8 @@ /ltmain.sh /m4 /missing +/test-driver +/ylwrap Makefile Makefile.in @@ -19,6 +21,10 @@ Makefile.in # Files created by `make check' /tests/*-test /tests/*.log +/tests/*.trs + +# pkg-config files +*.pc # Files and folders created by libtool .libs/ @@ -27,3 +33,7 @@ Makefile.in # Files and folders created by compilation .deps/ *.[oa] + +# Core dumps +core +vgcore.* diff --git a/configure.ac b/configure.ac index d02ee13..be019c6 100644 --- a/configure.ac +++ b/configure.ac @@ -17,8 +17,10 @@ dnl License along with this program. If not, see dnl <http://www.gnu.org/licenses/>. AC_PREREQ(2.65) -AC_INIT(The Sandglass Library, 0.3, tavianator@gmail.com, libsandglass) -AM_INIT_AUTOMAKE([parallel-tests]) +AC_INIT([The Sandglass Library], [0.3], [tavianator@tavianator.com], + [libsandglass], [http://www.tavianator.com/libsandglass/]) +AM_INIT_AUTOMAKE([parallel-tests color-tests std-options]) +AM_SILENT_RULES([yes]) dnl Programs AC_PROG_CC |