comparison configure.ac @ 17562:76a8a179bf5b

Move Automake options into AM_INIT_AUTOMAKE * configure.ac (AM_INIT_AUTOMAKE): Add required Automake options from bootstrap.conf. Add -Wno-override option since we override certain Automake targets and variables. * bootstrap.conf (AUTOMAKE): Delete Automake override variable.
author Mike Miller <mtmiller@ieee.org>
date Thu, 03 Oct 2013 22:52:02 -0400
parents c1e51a59f61e
children ddecb2e231d4
comparison
equal deleted inserted replaced
17561:b41860a0bc24 17562:76a8a179bf5b
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 subdir-objects]) 44 AM_INIT_AUTOMAKE([1.11 foreign -Wno-portability -Wno-override 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