Mercurial > vba-clojure
annotate configure.ac @ 13:731894a84231
clean up makefile
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sat, 03 Mar 2012 11:10:08 -0600 |
parents | 3c287cb0ace6 |
children | ac56489c2ca6 |
rev | line source |
---|---|
rlm@9 | 1 AC_PREREQ([2.68]) |
rlm@9 | 2 |
rlm@6 | 3 AC_INIT([vba-rlm], [1.0]) |
rlm@6 | 4 |
rlm@9 | 5 dnl TODO: change this to gba.cpp or something |
rlm@12 | 6 AC_CONFIG_SRCDIR([src/lua/lopcodes.c]) |
rlm@9 | 7 AC_CONFIG_HEADERS([config.h]) |
rlm@9 | 8 AC_PROG_RANLIB |
rlm@9 | 9 |
rlm@9 | 10 # Checks for header files. |
rlm@9 | 11 AC_CHECK_HEADERS([limits.h locale.h stddef.h stdlib.h string.h unistd.h]) |
rlm@9 | 12 |
rlm@9 | 13 # Checks for typedefs, structures, and compiler characteristics. |
rlm@9 | 14 AC_TYPE_SIZE_T |
rlm@9 | 15 AC_CHECK_TYPES([ptrdiff_t]) |
rlm@9 | 16 |
rlm@9 | 17 # Checks for library functions. |
rlm@9 | 18 AC_FUNC_ERROR_AT_LINE |
rlm@9 | 19 AC_FUNC_MKTIME |
rlm@9 | 20 AC_FUNC_REALLOC |
rlm@9 | 21 AC_FUNC_STRCOLL |
rlm@9 | 22 AC_CHECK_FUNCS([floor localeconv memchr modf pow setlocale sqrt strchr strcspn strerror strpbrk strrchr strstr strtoul]) |
rlm@9 | 23 |
rlm@8 | 24 AC_CONFIG_FILES([Makefile |
rlm@8 | 25 src/Makefile |
rlm@8 | 26 src/lua/Makefile]) |
rlm@8 | 27 |
rlm@6 | 28 AM_INIT_AUTOMAKE([dist-bzip2]) |
rlm@6 | 29 |
rlm@6 | 30 AC_OUTPUT |
rlm@6 | 31 |