You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

17 lines
455 B

  1. # configure.ac - process with autoconf to create configure script
  2. AC_INIT(cuetools,1.3,sorensen@users.berlios.de)
  3. AM_INIT_AUTOMAKE($PACKAGE_NAME,$PACKAGE_VERSION)
  4. # getting conflicting errors about config.h.in
  5. #AM_CONFIG_HEADER(config.h)
  6. #AC_CONFIG_HEADERS([config.h])
  7. AC_PROG_INSTALL
  8. AC_PROG_RANLIB
  9. AC_PROG_CC
  10. AM_PROG_LEX
  11. AC_PROG_YACC
  12. AC_CONFIG_FILES([Makefile doc/Makefile src/Makefile src/lib/Makefile src/tools/Makefile extras/Makefile])
  13. AC_OUTPUT