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.
 
 
 
 
 
 

16 lines
421 B

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