blob: c5b5cddbd1576e1c66bf12db1887f014b06b1f21 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
dnl Process this file with autoconf to produce a configure script.
dnl
dnl $Id$
dnl
AC_INIT(intex, 1.8.0)
AC_CONFIG_SRCDIR(src/mkintex.py)
AM_INIT_AUTOMAKE
dnl AM_GNU_GETTEXT([external])
AM_PATH_PYTHON(2.7,, :)
AC_OUTPUT([Makefile
setup.cfg
setup.py
bin/config.sh
doc/Makefile
doc/mkintex.xml
latex/Makefile
lib/intex/config.py
src/Makefile
src/post-install.sh
src/post-uninstall.sh],
[])
|