|
12345678910111213141516171819202122232425262728293031323334353637 |
- dnl
- dnl Configure script for a Lol Engine project
- dnl
-
- AC_INIT(roflmao, 0.0)
-
- dnl
- dnl Standard autoconf setup and tools requirements
- dnl
-
- AC_PREREQ(2.50)
- AC_CONFIG_AUX_DIR(.auto)
- AC_CANONICAL_SYSTEM
- AM_INIT_AUTOMAKE([subdir-objects no-define tar-ustar silent-rules])
- AM_DEFAULT_VERBOSITY=0
-
- AC_PROG_CXX
- AM_PROG_LIBTOOL
- AC_LIBTOOL_CXX
-
- AC_CONFIG_FILES(
- [Makefile
- roflmao/Makefile
- ])
-
- dnl
- dnl Inherit all Lol Engine checks
- dnl
-
- LOL_AC_SUBPROJECT()
-
- dnl
- dnl Perform the actual commands
- dnl
-
- AC_OUTPUT
-
|