mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-12-11 11:23:35 +08:00
26e251b603
* configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir, --with-htmldir): New. * configure: Regenerate. gdb/doc: * configure.ac (--with-datarootdir, --with-docdir, --with-pdfdir, --with-htmldir): New. * configure: Regenerate. * Makefile.in (datarootdir, docdir): Define. (gdb.dvi, gdb.pdf): Use same -I options as for building gdb.info instead of $(SET_TEXINPUTS). (gdbint.dvi, gdbint.pdf): Use same -I options as for building gdbint.info instead of $(SET_TEXINPUTS). (gdbint/index.html): Use same -I options as for building gdbint.info. (stabs.dvi, stabs.pdf): Use same -I options as for building stabs.info instead of $(SET_TEXINPUTS). (stabs/index.html): Use same -I options as for building stabs.info. (annotate.dvi, annotate.pdf): Use same -I options as for building annotate.info instead of $(SET_TEXINPUTS). (annotate/index.html): Use same -I options as for building annotate.info.
36 lines
963 B
Plaintext
36 lines
963 B
Plaintext
AC_PREREQ(2.59)
|
|
AC_INIT(refcard.tex)
|
|
sinclude(../../config/acx.m4)
|
|
AC_PROG_INSTALL
|
|
AC_PROG_LN_S
|
|
|
|
# Flags needed to enable html installing and building
|
|
AC_ARG_WITH(datarootdir,
|
|
AC_HELP_STRING([--with-datarootdir], [use datarootdir as the data root directory.]),
|
|
[datarootdir="\${prefix}/${withval}"],
|
|
[datarootdir="\${prefix}/share"])
|
|
|
|
AC_ARG_WITH(docdir,
|
|
AC_HELP_STRING([--with-docdir], [install documentation in this directory.]),
|
|
[docdir="\${prefix}/${withval}"],
|
|
[docdir="\${datarootdir}/doc"])
|
|
|
|
AC_ARG_WITH(pdfdir,
|
|
AC_HELP_STRING([--with-pdfdir], [install pdf in this directory.]),
|
|
[pdfdir="\${prefix}/${withval}"],
|
|
[pdfdir="\${docdir}"])
|
|
|
|
AC_ARG_WITH(htmldir,
|
|
AC_HELP_STRING([--with-htmldir], [install html in this directory.]),
|
|
[htmldir="\${prefix}/${withval}"],
|
|
[htmldir="\${docdir}"])
|
|
|
|
AC_SUBST(datarootdir)
|
|
AC_SUBST(docdir)
|
|
AC_SUBST(htmldir)
|
|
AC_SUBST(pdfdir)
|
|
|
|
ACX_PKGVERSION([GDB])
|
|
ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
|
|
AC_OUTPUT(Makefile)
|