configure.ac 880 B

1234567891011121314151617181920212223242526
  1. #
  2. # This program is free software; you can redistribute it and/or
  3. # modify it under the terms of the GNU General Public License
  4. # as published by the Free Software Foundation; either version 2
  5. # of the License, or (at your option) any later version.
  6. #
  7. # This program is distributed in the hope that it will be useful,
  8. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. # GNU General Public License for more details.
  11. # Author: hakanai
  12. AC_INIT([libsdb], [0.0.1], [bug-automake@gnu.org])
  13. AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
  14. AC_PROG_CC
  15. AM_PROG_AR
  16. AC_CHECK_LIB(m, main)
  17. AC_CHECK_HEADERS([stdlib.h])
  18. AC_CONFIG_HEADERS([config.h])
  19. AC_CONFIG_FILES([
  20. Makefile
  21. src/Makefile
  22. test/Makefile
  23. ])
  24. LT_INIT
  25. AC_OUTPUT