configure.ac
| 1 | # -*- Autoconf -*- |
| 2 | # Process this file with autoconf to produce a configure script. |
| 3 | |
| 4 | AC_PREREQ([2.69]) |
| 5 | AC_INIT([guile-rdf], [1.0], [julien@lepiller.eu]) |
| 6 | AM_INIT_AUTOMAKE([-Wall -Werror foreign]) |
| 7 | |
| 8 | # Checks for programs. |
| 9 | GUILE_PKG([3.0 2.2]) |
| 10 | GUILE_PROGS |
| 11 | GUILE_SITE_DIR |
| 12 | |
| 13 | AC_CONFIG_FILES([pre-inst-env], [chmod +x pre-inst-env]) |
| 14 | AC_CONFIG_FILES([tests/nquads.scm], [chmod +x tests/nquads.scm]) |
| 15 | AC_CONFIG_FILES([tests/semantics.scm], [chmod +x tests/semantics.scm]) |
| 16 | AC_CONFIG_FILES([tests/turtle.scm], [chmod +x tests/turtle.scm]) |
| 17 | AC_CONFIG_FILES(Makefile) |
| 18 | AC_REQUIRE_AUX_FILE([tap-driver.sh]) |
| 19 | AC_PROG_AWK |
| 20 | |
| 21 | AC_OUTPUT |
| 22 |