1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_INIT([arc-doc], [0.9.0], [http://bugzilla.nordugrid.org/])
AC_CONFIG_SRCDIR([Makefile.am])
AM_INIT_AUTOMAKE([foreign])
# Checks for programs.
#AC_PROG_INSTALL
#If `ln -s' works on the current file system (the operating system and file system support symbolic links), set the output variable LN_S to `ln -s'; otherwise, if `ln' works, set LN_S to `ln', and otherwise set it to `cp -p'.
AC_PROG_LN_S
# Checks for libraries.
AC_CHECK_PROGS(PDFLATEX, pdflatex)
AC_CHECK_PROGS(DOXYGEN, doxygen)
AC_CHECK_PROGS(DOT, dot)
if test "x$PDFLATEX" = "x"; then
enable_doc="no"
AC_MSG_NOTICE([WARNING: Missing pdflatex - documentation won't be built])
elif test "x$DOXYGEN" = "x"; then
enable_doc="no"
AC_MSG_NOTICE([WARNING: Missing doxygen - documentation won't be built])
elif test "x$DOT" = "x"; then
enable_doc="no"
AC_MSG_NOTICE([WARNING: Missing dot - documentation won't be built])
fi
AC_SUBST(PDFLATEX)
AC_SUBST(DOXYGEN)
#AC_CONFIG_SUBDIR([ws-programming-tutorial])
AC_CONFIG_FILES([Makefile
tech_doc/Makefile
tech_doc/client/Makefile
tech_doc/doxygen/Makefile
tech_doc/a-rex/Makefile
tech_doc/hed/Makefile
tech_doc/infosys/Makefile
tech_doc/infosys/TechnicalHandbook/Makefile
tech_doc/backend_interface/Makefile
tech_doc/jura/Makefile
tech_doc/chelonia/Makefile
tech_doc/sec/Makefile
tutorials/Makefile
tutorials/ws-programming-tutorial/Makefile
tutorials/ws-programming-tutorial/doc/Makefile
manuals/Makefile
manuals/user_interface/Makefile
manuals/ws-quick-guide/Makefile
manuals/janitor/Makefile
manuals/configuration/Makefile
manuals/chelonia/Makefile
manuals/hopi/Makefile
manuals/echo/Makefile
manuals/python/Makefile
release_notes/Makefile])
AC_OUTPUT
|