configure: allows to silent compilation

* HACKING, configure.ac: here.
This commit is contained in:
Etienne Renault 2017-02-03 15:22:37 +01:00
parent fefb375d5f
commit 6be87e5bb9
2 changed files with 13 additions and 0 deletions

10
HACKING
View file

@ -109,6 +109,16 @@ another "magic touch":
touch doc/org-stamp touch doc/org-stamp
Silent Building with automake
-----------------------------
The classical makefiles generated by automake are very verbose during
build beacause they prints the full command line of every stage. This
verbosity is very usefull to help (remotely) users to compile
Spot. Nonetheless, for developpers, these compilations lines may be
annoying. To reduce this verbosity, just run:
make V=0
Debugging Libtool executables Debugging Libtool executables
----------------------------- -----------------------------

View file

@ -44,6 +44,9 @@ AC_PROG_CXX
AM_PROG_LEX AM_PROG_LEX
adl_CHECK_BISON adl_CHECK_BISON
# Decrease verbosity when passing argument V=0
AM_SILENT_RULES([no])
# Option to activate C/C++14 # Option to activate C/C++14
AC_ARG_ENABLE([c++14], AC_ARG_ENABLE([c++14],
[AC_HELP_STRING([--enable-c++14], [AC_HELP_STRING([--enable-c++14],