Makefile.am
| 1 | include guile.am |
| 2 | |
| 3 | SOURCES= \ |
| 4 | rdf/entailment/d.scm \ |
| 5 | rdf/entailment/rdf.scm \ |
| 6 | rdf/entailment/rdfs.scm \ |
| 7 | rdf/entailment/simple.scm \ |
| 8 | rdf/rdf.scm \ |
| 9 | rdf/utils.scm \ |
| 10 | rdf/xsd.scm \ |
| 11 | turtle/fromrdf.scm \ |
| 12 | turtle/parser.scm \ |
| 13 | turtle/tordf.scm \ |
| 14 | nquads/parser.scm \ |
| 15 | nquads/tordf.scm \ |
| 16 | iri/iri.scm \ |
| 17 | test-modules/testsuite.scm \ |
| 18 | test-modules/online.scm \ |
| 19 | test-modules/result.scm \ |
| 20 | tests/nquads.scm \ |
| 21 | tests/semantics.scm \ |
| 22 | tests/turtle.scm |
| 23 | |
| 24 | TEST_EXTENSIONS = .scm |
| 25 | SCM_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh --color-tests yes --ignore-exit |
| 26 | TESTS = tests/turtle.scm tests/semantics.scm |
| 27 | EXTRA_DIST += $(TESTS) |
| 28 |