comparison configure.ac @ 17376:f0e3d3de5c22

build: Enable subdir-objects Automake option project-wide * configure.ac (AM_INIT_AUTOMAKE): Add subdir-objects option to enable it project-wide to simplify and anticipate future Automake defaults. * libgui/Makefile.am, libinterp/Makefile.am, liboctave/Makefile.am, liboctave/cruft/Makefile.am, scripts/Makefile.am (AUTOMAKE_OPTIONS): Delete.
author Mike Miller <mtmiller@ieee.org>
date Thu, 05 Sep 2013 01:49:29 -0400
parents bc018154e46a
children 2b4ed68be0d5
comparison
equal deleted inserted replaced
17375:bc018154e46a 17376:f0e3d3de5c22
39 AC_CONFIG_SRCDIR([libinterp/octave.cc]) 39 AC_CONFIG_SRCDIR([libinterp/octave.cc])
40 AC_CONFIG_HEADERS([config.h:config.in.h]) 40 AC_CONFIG_HEADERS([config.h:config.in.h])
41 AC_CONFIG_AUX_DIR([build-aux]) 41 AC_CONFIG_AUX_DIR([build-aux])
42 AC_CONFIG_MACRO_DIR([m4]) 42 AC_CONFIG_MACRO_DIR([m4])
43 43
44 AM_INIT_AUTOMAKE([1.11 tar-ustar]) 44 AM_INIT_AUTOMAKE([1.11 tar-ustar subdir-objects])
45 45
46 ## Add the option to enable silent rules, available since Automake 1.11 46 ## Add the option to enable silent rules, available since Automake 1.11
47 ## and included by default starting with Automake 1.13. 47 ## and included by default starting with Automake 1.13.
48 AM_SILENT_RULES 48 AM_SILENT_RULES
49 49