No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 
 

48 líneas
777 B

  1. dnl
  2. dnl Configure script for a Lol Engine project
  3. dnl
  4. AC_INIT(roflmao, 0.0)
  5. dnl
  6. dnl Standard autoconf setup and tools requirements
  7. dnl
  8. AC_PREREQ(2.50)
  9. AC_CONFIG_AUX_DIR(.auto)
  10. AC_CANONICAL_SYSTEM
  11. AM_INIT_AUTOMAKE([subdir-objects no-define tar-ustar silent-rules])
  12. AM_DEFAULT_VERBOSITY=0
  13. AC_PROG_CXX
  14. AM_PROG_LIBTOOL
  15. AC_LIBTOOL_CXX
  16. dnl
  17. dnl Build and configure Lol Engine before our repository
  18. dnl Ensure $lol_srcdir and $lol_builddir are properly set up
  19. dnl
  20. AC_CONFIG_SUBDIRS([lol])
  21. AC_SUBST(lol_srcdir, '${top_srcdir}/lol')
  22. AC_SUBST(lol_builddir, '${top_builddir}/lol')
  23. dnl
  24. dnl Inherit all Lol Engine checks
  25. dnl
  26. LOL_AC_CHECK()
  27. LOL_AC_SUBST()
  28. dnl
  29. dnl Export automake variables and write makefiles
  30. dnl
  31. AC_CONFIG_FILES(
  32. [Makefile
  33. roflmao/Makefile
  34. ])
  35. AC_OUTPUT