summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 86dbc04a50008d13cf26b99c5db8af867861c4de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.52)

AC_INIT([a11y-test-suite], [0.1.0])
AC_CONFIG_SRCDIR(HACKING)
AC_COPYRIGHT([Copyright 2006 Novell, Inc.])

AM_INIT_AUTOMAKE
AM_MAINTAINER_MODE

AC_MSG_CHECKING([python site path])
pythonsitedir="`./find-python-path.py`"
pythondir="\${libdir}/${pythonsitedir}"
AC_MSG_RESULT([$pythondir])
AC_SUBST(pythondir)

AC_CONFIG_FILES([
Makefile
python/Makefile
scripts/Makefile
])

AC_OUTPUT