From 4f62c95bdef6907b3f25d278824f0072940b01c7 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Thu, 14 Oct 2010 16:24:28 +0200 Subject: autotoolize, and compile the scheme files * .gitignore: * AUTHORS: * COPYING: * ChangeLog: * Makefile.am: * NEWS: * README: * acinclude.m4: * configure.ac: * env.in: All the needed bits. --- Makefile.am | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..410ee68 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,32 @@ +moddir=$(prefix)/share/guile/site + +SOURCES = \ + tekuti/base64.scm \ + tekuti/boot.scm \ + tekuti/comment.scm \ + tekuti/config.scm \ + tekuti/filters.scm \ + tekuti/git.scm \ + tekuti/index.scm \ + tekuti/match-bind.scm \ + tekuti/mod-lisp.scm \ + tekuti/page-helpers.scm \ + tekuti/page.scm \ + tekuti/post.scm \ + tekuti/request.scm \ + tekuti/tags.scm \ + tekuti/template.scm \ + tekuti/url.scm \ + tekuti/util.scm \ + tekuti/web.scm + +GOBJECTS = $(SOURCES:%.scm=%.go) + +nobase_mod_DATA = $(SOURCES) $(NOCOMP_SOURCES) $(GOBJECTS) +EXTRA_DIST = $(SOURCES) $(NOCOMP_SOURCES) + +CLEANFILES = $(GOBJECTS) + +SUFFIXES = .scm .go +.scm.go: + $(top_builddir)/env $(GUILE_TOOLS) compile -o "$@" "$<" -- cgit v1.2.3-54-g00ecf