Mercurial > hg > early-roguelike
comparison arogue7/configure.ac @ 223:0e99eade579c
Generate text documentation from the troff source files.
This is done by make, in the 'docs' target, which is now part of the
normal build process.
Unfortunately, not all the games include troff sources. Getting decent
HTML output from groff is still a difficult process which will not be
attempted at this time. There are a few bugs in the 'install' and
'uninstall' rules.
Not to mention that the documentation is sometimes inaccurate.
author | John "Elwin" Edwards |
---|---|
date | Sun, 21 Feb 2016 20:47:12 -0500 |
parents | 5238b835d661 |
children | 6376b514a30b |
comparison
equal
deleted
inserted
replaced
222:a666e4a034ed | 223:0e99eade579c |
---|---|
22 AC_PROG_GCC_TRADITIONAL | 22 AC_PROG_GCC_TRADITIONAL |
23 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK | 23 AC_FUNC_LSTAT_FOLLOWS_SLASHED_SYMLINK |
24 AC_TYPE_SIGNAL | 24 AC_TYPE_SIGNAL |
25 AC_CHECK_FUNCS([erasechar killchar alarm getpass memset setenv strchr _spawnl spawnl getpwuid loadav strerror setgid setuid getuid getgid]) | 25 AC_CHECK_FUNCS([erasechar killchar alarm getpass memset setenv strchr _spawnl spawnl getpwuid loadav strerror setgid setuid getuid getgid]) |
26 AC_PROG_INSTALL | 26 AC_PROG_INSTALL |
27 | |
28 AC_CHECK_PROG([NROFF], [nroff], [nroff],) | |
29 AC_CHECK_PROG([GROFF], [groff], [groff],) | |
30 AC_CHECK_PROG([COLCRT], [colcrt], [colcrt],) | |
31 AC_CHECK_PROG([TBL], [tbl], [tbl],) | |
27 | 32 |
28 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="arogue7"] ) | 33 AC_ARG_WITH(program-name, AC_HELP_STRING([--with-program-name=NAME],[alternate executable name]),[progname="$withval" ], [progname="arogue7"] ) |
29 PROGRAM=$progname | 34 PROGRAM=$progname |
30 AC_SUBST(PROGRAM) | 35 AC_SUBST(PROGRAM) |
31 | 36 |