16 lines
430 B
Plaintext
16 lines
430 B
Plaintext
# configure.ac - process with autoconf to create configure script
|
|
|
|
AC_INIT(cuetools,1.4.0-dev,sorensen@users.berlios.de)
|
|
# getting conflicting errors about config.h.in
|
|
AC_CONFIG_HEADERS(config.h)
|
|
AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION)
|
|
|
|
AC_PROG_INSTALL
|
|
AC_PROG_RANLIB
|
|
AC_PROG_CC
|
|
AM_PROG_LEX
|
|
AC_PROG_YACC
|
|
|
|
AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lib/Makefile src/tools/Makefile extras/Makefile])
|
|
AC_OUTPUT
|