source: projects/install-guide/branches/6.x/configure.ac @ 2748

Revision 2748, 797 bytes checked in by yasumichi, 13 years ago (diff)

autotools 対応

Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([vine-install-guide], [5.9], [http://vinelinux.org/bts.html])
6AM_INIT_AUTOMAKE([no-dist-gzip dist-bzip2 tar-ustar])
7
8# Checks for programs.
9PKG_CHECK_EXISTS([vine-manual-base], , AC_MSG_ERROR([Cannot find vine-manual-base.]))
10
11VMDIR=`pkg-config --variable=manualdir vine-manual-base`
12AC_SUBST(VMDIR)
13
14CSSFILE=`pkg-config --variable=cssfile vine-manual-base`
15AC_SUBST(CSSFILE)
16
17# Checks for libraries.
18
19# Checks for header files.
20
21# Checks for typedefs, structures, and compiler characteristics.
22
23# Checks for library functions.
24AC_CONFIG_FILES([
25        Makefile
26        help/Makefile
27        help/figures/Makefile
28        help/figures/textmode/Makefile
29])
30
31AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.