File: configure.in

package info (click to toggle)
partimage-doc 20020126-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 548 kB
  • ctags: 306
  • sloc: makefile: 142; sh: 112
file content (27 lines) | stat: -rw-r--r-- 579 bytes parent folder | download | duplicates (2)
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
dnl Process this file with autoconf to produce a configure script.
dnl

dnl VERSION=0
dnl PACKAGE=partimage-user-doc
AC_INIT(configure.in)
AM_INIT_AUTOMAKE(partimage-user-doc, 0.0.1)

dnl For testing and until official release, default prefix will be /tmp.
AC_PREFIX_DEFAULT(/usr)

AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET

AC_ARG_WITH(docdir,
  [  --with-doc-dir=PATH     path to doc [/usr/share/doc/partimage-doc]],
   DOCDIR=$with_doc_dir, DOCDIR=/${prefix}/share/doc/partimage-doc)
AC_SUBST(DOCDIR)

AC_OUTPUT([
Makefile
en/Makefile
en/man/Makefile
en/sgml/Makefile
])