]> git.donarmstrong.com Git - lilypond.git/blobdiff - website.make
Web build: reduce the number of errors/warnings.
[lilypond.git] / website.make
index 465757862073fbb97a870d0bb0e585de2b816131..26efac9cebefb9882208a55869d79a17b7f46d8d 100644 (file)
@@ -56,12 +56,19 @@ website-xrefs: website-version
        $(EXTRACT_TEXI_FILENAMES) -I $(top-src-dir)/Documentation/ \
                -I $(OUT) -o $(OUT) --split=node \
                $(top-src-dir)/Documentation/web.texi
-       $(foreach manual, $(MANUALS), \
-               $(EXTRACT_TEXI_FILENAMES) -I $(top-src-dir)/Documentation/ \
-               -I $(OUT) -o $(OUT) $(manual) && ) :
+       # normal manuals
+       for m in $(MANUALS); do \
+               b=`basename "$$m" .texi`; \
+               d=`basename "$$b" .tely`; \
+               $(EXTRACT_TEXI_FILENAMES) \
+                       -I $(top-src-dir)/Documentation/ \
+                       -I $(top-src-dir)/Documentation/"$$d"/ \
+                       -I $(OUT) -o $(OUT) "$$m" ; \
+       done
        # translations
        for l in $(WEB_LANGS); do \
                $(EXTRACT_TEXI_FILENAMES) \
+                       -I $(top-src-dir)/Documentation/ \
                        -I $(top-src-dir)/Documentation/"$$l" \
                        -I $(OUT) -o $(OUT) --split=node \
                        $(top-src-dir)/Documentation/"$$l"/web.texi ;\