summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am5
-rw-r--r--build-aux/find-dependencies.scm10
2 files changed, 12 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 58686e1..5e92638 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -92,6 +92,7 @@ EXTRA_DIST +=			\
   doc/hello.tar                 \
   doc/hello.txt                 \
   $(DOC_SCM)                    \
+  $(DOC_OTHER)                  \
   COPYING			\
   README.org
 
@@ -149,10 +150,10 @@ SKRIBILO_FLAGS = --source-path=$(srcdir) --image-path=$(builddir)
 CLEANFILES += doc/ccwl.info doc/skribilo.go
 CLEAN_DIRECTORIES += doc/ccwl.html
 
-doc/ccwl.info: doc/ccwl.skb doc/skribilo.go $(DOC_IMAGES) $(DOC_SCM) $(DOC_OUT)
+doc/ccwl.info: doc/ccwl.skb doc/skribilo.go $(DOC_IMAGES) $(DOC_SCM) $(DOC_OUT) $(DOC_OTHER)
 	$(SKRIBILO_GEN)$(builddir)/pre-inst-env $(SKRIBILO) $(SKRIBILO_FLAGS) -t info $< -o $@
 
-doc/ccwl.html: doc/ccwl.skb doc/skribilo.go $(DOC_IMAGES) $(DOC_SCM) $(DOC_OUT)
+doc/ccwl.html: doc/ccwl.skb doc/skribilo.go $(DOC_IMAGES) $(DOC_SCM) $(DOC_OUT) $(DOC_OTHER)
 	rm -rf $@
 	$(MKDIR_P) $@
 	$(SKRIBILO_GEN)$(builddir)/pre-inst-env $(SKRIBILO) $(SKRIBILO_FLAGS) -t html $< -o $@/index.html
diff --git a/build-aux/find-dependencies.scm b/build-aux/find-dependencies.scm
index 4cd20c5..d40a389 100644
--- a/build-aux/find-dependencies.scm
+++ b/build-aux/find-dependencies.scm
@@ -50,7 +50,9 @@ dependency is of the form (tag . file). tag may either be the symbol
             args))
     (('source args ...)
      (apply (lambda* (#:key file #:allow-other-keys)
-              `((out . ,file)))
+              (if (string-suffix? ".out" file)
+                  `((out . ,file))
+                  `((other . ,file))))
             args))
     (('scheme-source file)
      `((scm . ,file)))
@@ -80,4 +82,10 @@ dependency is of the form (tag . file). tag may either be the symbol
                                      (('out . file) file)
                                      (_ #f))
                                    dependencies)
+                       " "))
+  (format #t "DOC_OTHER = ~a~%"
+          (string-join (filter-map (match-lambda
+                                     (('other . file) file)
+                                     (_ #f))
+                                   dependencies)
                        " ")))