Add -Wall -Werror to the automake command line.
Add the test suite to Makefile.am (will generate a `make check` target).
SUBDIRS = src
EXTRA_DIST = doc run-tests.sh
man_MANS = doc/man/apply-default-acl.1
+TESTS = run-tests.sh
# Regenerate the junk that autotools wants to have around.
aclocal
-automake --foreign --add-missing
+automake --foreign --add-missing -Wall -Werror
autoconf
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.68])
-AC_INIT([apply-default-acl], [0.0.3], [michael@orlitzky.com])
+AC_INIT([apply-default-acl], [0.0.4], [michael@orlitzky.com])
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/apply-default-acl.c])
AC_CONFIG_FILES([Makefile src/Makefile])