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/vocabulary.scm \ |
14 | webfinger/webfinger.scm |
15 | |
16 | info_TEXINFOS= doc/guile-fediverse.texi |
17 | |
18 | TEST_EXTENSIONS = .scm |
19 | |
20 | SCM_LOG_DRIVER = \ |
21 | $(top_builddir)/env $(GUILE) --no-auto-compile -e main \ |
22 | $(top_srcdir)/build-aux/test-driver.scm |
23 | |
24 | TEST_LOG_DRIVER = env AM_TAP_AWK='$(AWK)' $(SHELL) $(top_srcdir)/tap-driver.sh --ignore-exit |
25 | TESTS = tests/asn1.scm |
26 | EXTRA_DIST += $(TESTS) |
27 |