From: Hugo Villeneuve Date: Mon, 2 Dec 2013 01:43:19 +0000 (-0500) Subject: Add automake options -Wall and gnu std-options X-Git-Tag: v2.0.0~57 X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=5f0e9d167d924d7298975e1877c5b3cd5c2d9f15;p=emu8051.git Add automake options -Wall and gnu std-options Remove configure verbose output --- diff --git a/configure.ac b/configure.ac index bfa92d6..c8e8135 100644 --- a/configure.ac +++ b/configure.ac @@ -7,7 +7,7 @@ AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR(src/cpu8051.c) AM_CONFIG_HEADER(config.h:config-h.in) dnl Checking if the NEWS file has been updated to reflect the current version. -AM_INIT_AUTOMAKE(check-news) +AM_INIT_AUTOMAKE(check-news -Wall std-options) AM_SILENT_RULES([yes]) dnl Testing the C compiler. @@ -53,24 +53,3 @@ AC_SUBST(ac_aux_dir) dnl Creating output file(s) AC_OUTPUT(Makefile src/Makefile data/Makefile doc/Makefile) - -echo \ -"--------------------------------------------------------------------------- -Configuration: - - Install path: ${prefix} - Compiler: ${CC} - Compiler flags: ${CFLAGS} - Linker flags: ${LIBS}" - -echo -n " Build GUI: " -if test x"${ac_cv_enable_gui}" = xyes; then - echo "yes" -else - echo "no" -fi - -echo \ -" - See config.h for further configuration information. ----------------------------------------------------------------------------"