File: configure.ac

package info (click to toggle)
cuetools 1.3.1-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 824 kB
  • ctags: 1,155
  • sloc: sh: 2,171; ansic: 1,546; yacc: 499; lex: 203; python: 81; makefile: 65
file content (15 lines) | stat: -rw-r--r-- 426 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# configure.ac - process with autoconf to create configure script

AC_INIT(cuetools,1.3.1,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