parallel/configure.ac

16 lines
442 B
Plaintext
Raw Normal View History

2016-01-23 09:46:58 +00:00
AC_INIT([parallel], [20160122], [bug-parallel@gnu.org])
AM_INIT_AUTOMAKE([-Wall -Werror foreign])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_FILES([
Makefile
src/Makefile
])
AC_ARG_ENABLE(documentation,
AC_HELP_STRING([--disable-documentation],
[Omit building and installing the documentation. (default=no)]),,
[enable_documentation=yes])
AM_CONDITIONAL([DOCUMENTATION], [test x$enable_documentation = xyes])
2014-08-22 21:30:39 +00:00
AC_PROG_LN_S
AC_OUTPUT