1
0
Fork 0
tekuti/Makefile.am
Andy Wingo 1636c96f9f remove obsolete (tekuti url)
* tekuti/url.scm: Remove.
* Makefile.am: Remove url.scm

* tekuti/post.scm: Remove reference to (tekuti url).
  (parse-post-data): Use uri-encode.
2011-02-22 22:19:30 +01:00

33 lines
795 B
Makefile

moddir=$(prefix)/share/guile/site
SOURCES = \
tekuti/base64.scm \
tekuti/boot.scm \
tekuti/cache.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/util.scm \
tekuti/web.scm
GOBJECTS = $(SOURCES:%.scm=%.go)
nobase_mod_DATA = $(SOURCES) $(NOCOMP_SOURCES) $(GOBJECTS)
EXTRA_DIST = $(SOURCES) $(NOCOMP_SOURCES)
CLEANFILES = $(GOBJECTS)
GUILE_WARNINGS = -Wunbound-variable -Warity-mismatch -Wformat
SUFFIXES = .scm .go
.scm.go:
$(top_builddir)/env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<"