[Genabel-commits] r1063 - in pkg/ProbABEL: . doc
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Mon Dec 31 17:19:47 CET 2012
Author: lckarssen
Date: 2012-12-31 17:19:47 +0100 (Mon, 31 Dec 2012)
New Revision: 1063
Modified:
pkg/ProbABEL/configure.ac
pkg/ProbABEL/doc/INSTALL
Log:
ProbABEL's ./configure now accepts the --enable-silent-rules option that reduces the output of the subsequent make runs. This helps remove 'optical noise' from the compile runs.
- configure.ac: Add silent-rules option; removed the obsolete way of calling AM_INIT_AUTOMAKE with package name and version number (this has been obsolete since Automake 1.13 and is taken care of in the AC_INIT line).
- doc/INSTALL: Add information on the --enable-silent-rules option as well as on the DISTCHECK_CONFIGURE_FLAGS environment variable.
Modified: pkg/ProbABEL/configure.ac
===================================================================
--- pkg/ProbABEL/configure.ac 2012-12-23 21:04:43 UTC (rev 1062)
+++ pkg/ProbABEL/configure.ac 2012-12-31 16:19:47 UTC (rev 1063)
@@ -2,8 +2,9 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.67])
-AC_INIT(ProbABEL, 0.3.0-beta2, genabel-devel at r-forge.wu-wien.ac.at)
-AM_INIT_AUTOMAKE(ProbABEL, 0.3.0-beta2)
+AC_INIT(ProbABEL, 0.3.0, genabel-devel at r-forge.wu-wien.ac.at)
+AM_INIT_AUTOMAKE([silent-rules])
+AM_SILENT_RULES
AC_CONFIG_SRCDIR([src/data.h])
AC_CONFIG_HEADERS([src/config.h])
Modified: pkg/ProbABEL/doc/INSTALL
===================================================================
--- pkg/ProbABEL/doc/INSTALL 2012-12-23 21:04:43 UTC (rev 1062)
+++ pkg/ProbABEL/doc/INSTALL 2012-12-31 16:19:47 UTC (rev 1063)
@@ -61,14 +61,26 @@
--enable function of ./configure:
./configure --enable-pacoxph
+ Another commonly used option is --enable-silent-rules, this reduces
+ the output (sometimes considered to be noise) of the make step:
+./configure --enable-silent-rules
+
To generate a .tar.gz package for distribution run:
./configure
make dist
To test if all your changes to the source files will be packaged
- into the tar.gz file correctly run
+ into the tar.gz file correctly (as well as several other basic
+ checks) run
./configure
make distcheck
+ This will try to build the project in a different (temporary)
+ directory. Since it also runs ./configure in this build directory
+ you may want to specify options to that configure run as well (the
+ ones you specified when running ./configure earlier won't be
+ "transmitted" to this run). This can be done as in the following
+ example:
+DISTCHECK_CONFIGURE_FLAGS="--enable-silent-rules" make distcheck
To clean up all files generated by ./configure and make, run
make distclean
More information about the Genabel-commits
mailing list