OSDN Git Service

Prepare, tag, and publish 0.46 release.
[mingw/pexports.git] / configure.ac
1 # configure.ac for pexports
2 # Created 2013-05-29 by Keith Marshall <keithmarshall@users.sourceforge.net>
3 # Copyright (C) 2013, MinGW.org Project.
4 #
5   AC_INIT([pexports],[0.46],[http://mingw.org/reporting_bugs])
6 #
7 # Directory organisation.
8 #
9   AC_CONFIG_SRCDIR([pexports.c])
10   AC_CONFIG_AUX_DIR([build-aux])
11 #
12 # We use the host_os component of the canonical triplet as an identifier
13 # in generated package names.
14 #
15   AC_CANONICAL_HOST
16 #
17 # Identify the compiler, lexical analyser, and parser generator.
18 #
19   AC_PROG_CC
20   AC_PROG_LEX
21   AC_PROG_YACC
22 #
23 # Initialise flags for the lexical analyser, and the parser generator.
24 # FIXME: these YFLAGS gratuitously assume that the parser generator will
25 # be GNU bison; we may need to adjust for yacc or byacc.
26 #
27   AC_SUBST([LFLAGS])
28   AC_SUBST([YFLAGS],[${YFLAGS-'--defines=$*.h'}])
29 #
30 # Other tools used for installation, and distribution packaging.
31 #
32   AC_PROG_LN_S
33   AC_PROG_MKDIR_P
34   AC_PROG_INSTALL
35 #
36 # Generate configuration.
37 #
38   AC_CONFIG_FILES([Makefile])
39   AC_OUTPUT
40 #
41 # configure.ac: end of file