aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2013-12-15 00:30:11 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2013-12-15 00:30:11 +0100
commitae587d9d1678d50c98497efeaeecda28f2703229 (patch)
tree1ebbf6c22a285b472d27ace9b6862b34de863a1f /configure.ac
parent3b9870cebf16a50ade6d7591e089c8ccbe614024 (diff)
downloaddabmod-ae587d9d1678d50c98497efeaeecda28f2703229.tar.gz
dabmod-ae587d9d1678d50c98497efeaeecda28f2703229.tar.bz2
dabmod-ae587d9d1678d50c98497efeaeecda28f2703229.zip
autotools: AM_INIT_AUTOMAKE with subdir-objects
Make the autotools non-recursive to suppress error, and make it future-proof.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 1605906..f79aa05 100644
--- a/configure.ac
+++ b/configure.ac
@@ -20,7 +20,7 @@ AC_PREREQ(2.59)
AC_INIT([CRC-DabMod], [0.3.3-mpb], [pascal.charest@crc.ca])
AC_CONFIG_AUX_DIR([build-aux])
AC_CANONICAL_SYSTEM
-AM_INIT_AUTOMAKE([-Wall])
+AM_INIT_AUTOMAKE([-Wall subdir-objects])
AC_CONFIG_SRCDIR([src/DabMod.cpp])
AM_CONFIG_HEADER([config.h])
AM_SILENT_RULES([yes])
@@ -133,7 +133,5 @@ AC_FUNC_REALLOC
AC_TYPE_SIGNAL
AC_CHECK_FUNCS([bzero floor ftime gettimeofday memset sqrt strchr strerror strtol])
-AC_CONFIG_FILES([Makefile
- lib/Makefile
- src/Makefile])
+AC_CONFIG_FILES([Makefile])
AC_OUTPUT