]>
Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | dnl Process this file with autoconf to produce a configure script. |
2 | AC_PREREQ(2.13) | |
3 | AC_INIT(gprof.c) | |
4 | ||
5 | AC_CANONICAL_SYSTEM | |
6 | ||
fb57846b | 7 | AM_INIT_AUTOMAKE(gprof, 2.9.5) |
252b5132 RH |
8 | |
9 | AM_PROG_LIBTOOL | |
10 | ||
11 | dnl For simplicity, we use the BFD configuration file for most | |
12 | dnl things. However, we also need our own configuration file for | |
13 | dnl the automake PACKAGE and VERSION macros. We don't name it | |
14 | dnl config.h, to avoid any possible confusion with the bfd config.h. | |
15 | AM_CONFIG_HEADER(gconfig.h:gconfig.in) | |
16 | ||
17 | AC_PROG_CC | |
18 | AC_PROG_INSTALL | |
19 | ||
20 | AC_ISC_POSIX | |
21 | ||
22 | ALL_LINGUAS= | |
23 | CY_GNU_GETTEXT | |
24 | ||
25 | AM_MAINTAINER_MODE | |
26 | AC_EXEEXT | |
27 | ||
28 | AC_OUTPUT(Makefile po/Makefile.in:po/Make-in, | |
29 | [sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile]) |