1228060Sbaptdnl autoconf configuration for gperf
2228060Sbapt
3228060Sbaptdnl Copyright (C) 1998, 2002, 2003, 2005-2007 Free Software Foundation, Inc.
4228060Sbaptdnl Written by Douglas C. Schmidt <schmidt@ics.uci.edu>
5228060Sbaptdnl and Bruno Haible <bruno@clisp.org>.
6228060Sbaptdnl
7228060Sbaptdnl This file is part of GNU GPERF.
8228060Sbaptdnl
9228060Sbaptdnl GNU GPERF is free software; you can redistribute it and/or modify
10228060Sbaptdnl it under the terms of the GNU General Public License as published by
11228060Sbaptdnl the Free Software Foundation; either version 2, or (at your option)
12228060Sbaptdnl any later version.
13228060Sbaptdnl
14228060Sbaptdnl GNU GPERF is distributed in the hope that it will be useful,
15228060Sbaptdnl but WITHOUT ANY WARRANTY; without even the implied warranty of
16228060Sbaptdnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17228060Sbaptdnl GNU General Public License for more details.
18228060Sbaptdnl
19228060Sbaptdnl You should have received a copy of the GNU General Public License
20228060Sbaptdnl along with this program; see the file COPYING.
21228060Sbaptdnl If not, write to the Free Software Foundation, Inc.,
22228060Sbaptdnl 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
23228060Sbapt
24228060SbaptAC_PREREQ([2.60])
25228060SbaptAC_INIT(doc/gperf.1)
26228060SbaptAC_PROG_MAKE_SET
27228060SbaptAC_OBJEXT
28228060SbaptAC_EXEEXT
29228060Sbapt
30228060Sbaptdnl An autoconf-2.52 bug: AC_CONFIG_SUBDIRS requires AC_CONFIG_AUX_DIR_DEFAULT.
31228060Sbaptac_aux_dir=$srcdir
32228060SbaptAC_PROVIDE([AC_CONFIG_AUX_DIR_DEFAULT])
33228060SbaptAC_CONFIG_SUBDIRS(lib src tests doc)
34228060Sbapt
35228060Sbaptdnl This piece of sed script replaces every line containing '@subdir@'
36228060Sbaptdnl by several consecutive lines, each referencing one subdir.
37228060Sbaptextrasub="$extrasub"'
38228060Sbapt/@subdir@/{
39228060Sbapth
40228060Sbaptg
41228060Sbapts/@subdir@/lib/
42228060Sbaptp
43228060Sbaptg
44228060Sbapts/@subdir@/src/
45228060Sbaptp
46228060Sbaptg
47228060Sbapts/@subdir@/tests/
48228060Sbaptp
49228060Sbaptg
50228060Sbapts/@subdir@/doc/
51228060Sbaptp
52228060Sbaptd
53228060Sbapt}
54228060Sbapt'
55228060SbaptAC_OUTPUT(Makefile)
56