File: configure.ac

package info (click to toggle)
parallel 20161222-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 3,800 kB
  • ctags: 984
  • sloc: perl: 9,396; sh: 879; makefile: 243; csh: 112
file content (15 lines) | stat: -rw-r--r-- 442 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
AC_INIT([parallel], [20161222], [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])
AC_PROG_LN_S
AC_OUTPUT