Makefile.am
1 | include build-aux/guile.am |
2 | |
3 | moddir=$(prefix)/share/guile/site/$(GUILE_EFFECTIVE_VERSION) |
4 | godir=$(libdir)/guile/$(GUILE_EFFECTIVE_VERSION)/site-ccache |
5 | |
6 | SOURCES= \ |
7 | activitypub/vocabulary.scm \ |
8 | activitystreams/ontology.scm \ |
9 | activitystreams/predicates.scm \ |
10 | activitystreams/vocabulary.scm \ |
11 | http-signature/asn1.scm \ |
12 | http-signature/crypto.scm \ |
13 | http-signature/http.scm \ |
14 | http-signature/vocabulary.scm \ |
15 | webfinger/webfinger.scm |
16 | |
17 | BUILT_SOURCES= \ |
18 | schema.org/vocabulary.scm |
19 | |
20 | info_TEXINFOS= doc/guile-fediverse.texi |
21 | |
22 | TEST_EXTENSIONS = .scm |
23 | |
24 | SCM_LOG_DRIVER = \ |
25 | $(top_builddir)/env $(GUILE) --no-auto-compile -e main \ |
26 | $(top_srcdir)/build-aux/test-driver.scm |
27 | |
28 | TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh --ignore-exit |
29 | TESTS = tests/asn1.scm |
30 | EXTRA_DIST += $(TESTS) |
31 | |
32 | schema.org/vocabulary.scm: schema.org/generate-vocabulary.scm |
33 | ./env guile -c '(use-modules (schema.org generate-vocabulary)) (generate-schema "schema.org/vocabulary.scm" $(SCHEMA_ORG_VOCABULARY))' |
34 |