aboutsummaryrefslogtreecommitdiffhomepage
path: root/configure.ac
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2016-02-16 15:07:31 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2016-02-16 15:07:31 +0100
commitc9c6e63472701017041e66d3eeb2d750b1aafb32 (patch)
treeb897317597808e0b2864b333f84a6937ad9a0c35 /configure.ac
parent7ee385ba23522ea262e43854126e8f9de26bf7c8 (diff)
downloadsciteco-c9c6e63472701017041e66d3eeb2d750b1aafb32.tar.gz
distribution helper script: let it be preprocessed/substituted by Autoconf
* makes sense since it already extracted information from ./configure that is usually substituted. * it already had to be run from a configured build directory * it required the source tree directory, which had to be overwritten on the Make command line when using an out-of-source build dir. This is no longer necessary. * It is still a stand-alone Makefile to keep it isolated from the main build system, although it could certainly be translated to Automake. * the generated file will now be called distribute.mk to signify that it is a Makefile.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4d17cf9..033b244 100644
--- a/configure.ac
+++ b/configure.ac
@@ -339,7 +339,7 @@ AC_ARG_ENABLE(static-executables,
[static_executables=$enableval], [static_executables=no])
AM_CONDITIONAL(STATIC_EXECUTABLES, [test x$static_executables = xyes])
-AC_CONFIG_FILES([Makefile])
+AC_CONFIG_FILES([Makefile distribute.mk])
AC_CONFIG_FILES([src/Makefile src/interface-gtk/Makefile src/interface-curses/Makefile])
AC_CONFIG_FILES([lib/Makefile])
AC_CONFIG_FILES([doc/Makefile doc/Doxyfile])