configure.ac 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. AC_INIT(guile-charting, 0.2.0)
  2. AC_COPYRIGHT([
  3. Guile-Charting
  4. Copyright (C) 2014 Andy Wingo
  5. Guile-Charting is free software: you can redistribute it and/or modify
  6. it under the terms of the GNU Lesser General Public License as published
  7. by the Free Software Foundation, either version 3 of the License, or (at
  8. your option) any later version.
  9. Guile-Charting is distributed in the hope that it will be useful, but
  10. WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser
  12. General Public License for more details.
  13. You should have received a copy of the GNU Lesser General Public
  14. License along with this program. If not, see
  15. <http://www.gnu.org/licenses/>.
  16. ])
  17. AC_CONFIG_SRCDIR(charting.scm)
  18. AC_CONFIG_AUX_DIR([build-aux])
  19. AM_INIT_AUTOMAKE([-Wall -Wno-portability])
  20. AM_SILENT_RULES([yes])
  21. GUILE_PKG([3.0 2.2 2.0])
  22. GUILE_PROGS
  23. PKG_CHECK_MODULES(GUILE_CAIRO, guile-cairo)
  24. AC_CONFIG_FILES([
  25. Makefile
  26. examples/bar-chart/Makefile
  27. examples/elf-map/Makefile
  28. examples/perf-series/Makefile
  29. examples/plot-data/Makefile
  30. examples/scatter-plot/Makefile
  31. ])
  32. AC_CONFIG_FILES([env], [chmod +x env])
  33. AC_OUTPUT