]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/GNUmakefile
Merge branch 'jneeman' of git+ssh://jneem@git.sv.gnu.org/srv/git/lilypond into jneeman
[lilypond.git] / Documentation / GNUmakefile
index 74083082de0392070bcbeb1084ef0603c556a20a..55f08098858a0d0a92d48d4bc06c7a1b54d18afd 100644 (file)
@@ -1,26 +1,46 @@
-# Documentation/Makefile
-
 depth = ..
 
 NAME = documentation
-SUBDIRS= user metadoc bibliography pictures topdocs ntweb
-STEPMAKE_TEMPLATES=documentation  texinfo
-
-README_TOP_FILES=NEWS DEDICATION TODO AIMS
-INFO_FILES = $(wildcard $(outdir)/$(package).info*)
-EXTRA_DIST_FILES = COPYRIGHT 
-
-
+LANGS = fr # don't enable unpolished or broken translations
+SUBDIRS=user bibliography pictures topdocs misc po $(LANGS)
+STEPMAKE_TEMPLATES=documentation texinfo tex
+LOCALSTEPMAKE_TEMPLATES=lilypond ly
+LILYPOND_BOOK_FLAGS=--extra-options '-e "(ly:set-option (quote internal-type-checking) \#t)"'
+README_TOP_FILES= DEDICATION THANKS 
+EXTRA_DIST_FILES= texinfo.css
 
-BLURBS=BLURB 
+include $(depth)/make/stepmake.make
 
-include $(depth)/make/stepmake.make 
+default: local-doc
 
-default: do-doc
+local-WWW: copy-for-me txt-to-html $(outdir)/index.html
 
-info: $(outdir)/$(package).info
+local-WWW-clean: deep-WWW-clean
 
-local-WWW: copy-for-me
+deep-WWW-clean:
+       rm -rf $(outdir)/wiki-dump
 
 copy-for-me:
-       $(foreach a, $(README_TOP_FILES),cp ../$(a) $(outdir)/$(a).txt && ) true
+       $(foreach a, $(README_TOP_FILES), cp $(top-src-dir)/$(a) $(outdir)/$(a).txt && ) true
+
+OUT_TXT_FILES = $(addprefix $(outdir)/, $(addsuffix .txt, $(README_TOP_FILES)))
+
+# cd $(outdir) rule gets bit hairy for --srcdir configure builds
+txt-to-html:
+       $(PYTHON) $(step-bindir)/text2html.py $(OUT_TXT_FILES)
+
+ifneq ($(ISOLANG),)
+new-lang:
+       @if (( $$(file -b $(ISOLANG)) == directory )) 2>/dev/null; \
+       then echo "Error: $(ISOLANG) directory already exists. Exiting." ; \
+       exit 3 ; \
+       fi
+       mkdir -p $(ISOLANG)/user
+       cp fr/GNUmakefile $(ISOLANG)
+       cp fr/user/GNUmakefile $(ISOLANG)/user
+       sed -i -e 's/ISOLANG *= *fr/ISOLANG = $(ISOLANG)/' $(ISOLANG)/GNUmakefile $(ISOLANG)/user/GNUmakefile
+       $(PYTHON) $(depth)/buildscripts/texi-langutils.py -d $(outdir) -b "UNTRANSLATED NODE: IGNORE ME" -o doc.pot --skeleton --gettext ../user/lilypond.tely
+       mv $(outdir)/*.*tely $(ISOLANG)/user
+       msgmerge -U po/lilypond-doc.pot $(outdir)/doc.pot
+       cp po/lilypond-doc.pot po/$(ISOLANG).po
+endif
\ No newline at end of file