25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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
|