configure.ac 518 B

1234567891011121314151617181920212223
  1. # -*- Autoconf -*-
  2. # Process this file with autoconf to produce a configure script.
  3. AC_PREREQ([2.69])
  4. AC_INIT([cdst], [0.1.0], [cyberpity@gmail.com])
  5. AC_CONFIG_SRCDIR([src/main.c])
  6. AC_CONFIG_HEADERS([config.h])
  7. AM_INIT_AUTOMAKE([-Wall -Werror])
  8. # Checks for programs.
  9. AC_PROG_CC
  10. # Checks for libraries.
  11. # Checks for header files.
  12. # Checks for typedefs, structures, and compiler characteristics.
  13. # Checks for library functions.
  14. AC_CONFIG_FILES([Makefile])
  15. AC_OUTPUT