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