summaryrefslogtreecommitdiffstats
path: root/poxml/antlr/configure.in
blob: 66f8cf157b40ff02f5a2f20c93892265ac11d022 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
AC_INIT(src/Parser.cpp)

PACKAGE=libantlr
VERSION="2.7.1"
LIBANTLR_SO_VERSION=0:0:0

AM_INIT_AUTOMAKE($PACKAGE, $VERSION)

AM_DISABLE_SHARED
AM_PROG_LIBTOOL
AC_PROG_CXX
AC_PROG_CXXCPP
AC_PROG_RANLIB

test "$ac_cv_prog_gxx" = 'yes' && CXXFLAGS="$CXXFLAGS -W -Wall -pipe"

AC_SUBST(LIBANTLR_SO_VERSION)
AC_SUBST(LIBTOOL_DEPS)

AC_OUTPUT(Makefile \
          src/Makefile \
          antlr/Makefile)