configure.ac 384 B

12345678910111213
  1. # Copyright (C) 2006-2017 Free Software Foundation, Inc.
  2. # This configure.ac script is free software; the Free Software Foundation
  3. # gives unlimited permission to copy, distribute and modify it.
  4. AC_INIT([amhello], [1.0], [bug-automake@gnu.org])
  5. AM_INIT_AUTOMAKE([-Wall -Werror foreign])
  6. AC_PROG_CC
  7. AC_CONFIG_HEADERS([config.h])
  8. AC_CONFIG_FILES([
  9. Makefile
  10. src/Makefile
  11. ])
  12. AC_OUTPUT