X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;ds=inline;f=make%2Fly-rules.make;h=25dd5b2fbbb64afbc1a0bd315f46694cb15c8389;hb=743dc7b27888c776186336cf4b330d3ebfc821de;hp=49a0f6dd129dbec51bae32312951f13ec8592417;hpb=2edcb9426a00a159847e0b4adb7c048c2d058b87;p=lilypond.git diff --git a/make/ly-rules.make b/make/ly-rules.make index 49a0f6dd12..25dd5b2fbb 100644 --- a/make/ly-rules.make +++ b/make/ly-rules.make @@ -1,32 +1,50 @@ -# Mudela_rules.make +.SUFFIXES: .doc .tely .texi .ly -.SUFFIXES: .doc .dvi .mudtex .tely .texi +# TODO: fix hardcoded out/ ? +LYS_OUTPUT_OPTION= --lily-output-dir $(LYS_OUTPUT_DIR) +LYS_OUTPUT_DIR=$(top-build-dir)/out/lybook-db +LILYPOND_BOOK_FLAGS += $(LYS_OUTPUT_OPTION) +$(outdir)/%.latex: %.doc $(INIT_LY_SOURCES) $(SCHEME_SOURCES) + LILYPOND_VERSION=$(TOPLEVEL_VERSION) $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND_BOOK_PROCESS) $(LILYPOND_BOOK_LILYPOND_FLAGS)' --output=$(outdir) $(LILYPOND_BOOK_FLAGS) --redirect-lilypond-output $< -$(outdir)/%.latex: %.doc - rm -f $@ - LILYPONDPREFIX=$(LILYPONDPREFIX)/.. $(PYTHON) $(script-dir)/lilypond-book.py --outdir=$(outdir) -I $(pwd) -I $(input-dir)/tricks/ -I $(input-dir)/regression/ -I $(input-dir)/test/ --dependencies --dep-prefix=$(outdir)/ $< - chmod -w $@ +# This allows -j make option while making sure only one lilypond-book instance +# is running at the same time, using GNU make's order-only prerequisites so +# as to not create superficial dependencies between unrelated manuals. +define CHAIN_RULE +| $(i) +$(i): +endef + +$(eval $(firstword $(TEXI_FILES_FROM_TELY)):\ + $(foreach i, $(wordlist 2, $(words $(TEXI_FILES_FROM_TELY)),\ + $(TEXI_FILES_FROM_TELY)),$(CHAIN_RULE))) # don't do ``cd $(outdir)'', and assume that $(outdir)/.. is the src dir. # it is not, for --srcdir builds -$(outdir)/%.texi: %.tely - rm -f $@ - LILYPONDPREFIX=$(LILYPONDPREFIX)/.. $(PYTHON) $(script-dir)/lilypond-book.py --outdir=$(outdir) -I $(pwd) -I $(input-dir)/tricks/ -I $(input-dir)/regression/ -I $(input-dir)/test/ --dependencies --format=texi $< - chmod -w $@ - -# nexi: no-lily texi -# for plain info doco: don't run lily -$(outdir)/%.nexi: %.tely - rm -f $@ - LILYPONDPREFIX=$(LILYPONDPREFIX)/.. $(PYTHON) $(script-dir)/lilypond-book.py --outdir=$(outdir) --no-lily -I $(pwd) -I $(input-dir)/tricks/ -I $(input-dir)/regression/ -I $(input-dir)/test/ --dependencies --dep-prefix=$(outdir)/ --format=texi $< - mv $(@D)/$(*F).texi $@ - chmod -w $@ - -# nfo: info from non-lily texi -$(outdir)/%.info: $(outdir)/%.nexi - -$(MAKEINFO) --force --output=$(outdir)/$(*F).info $< - -# nfo: info from non-lily texi -#$(outdir)/%.nfo: $(outdir)/%.nexi -# -$(MAKEINFO) --force --output=$(outdir)/$(*F).info $< +$(outdir)/%.texi: %.tely $(outdir)/version.itexi $(DOCUMENTATION_LOCALE_TARGET) $(INIT_LY_SOURCES) $(SCHEME_SOURCES) + LILYPOND_VERSION=$(TOPLEVEL_VERSION) $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND_BOOK_PROCESS) $(LILYPOND_BOOK_LILYPOND_FLAGS)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) $(LILYPOND_BOOK_FLAGS) --redirect-lilypond-output $< + + +$(outdir)/%.texi: $(outdir)/%.tely $(outdir)/version.itexi $(DOCUMENTATION_LOCALE_TARGET) $(INIT_LY_SOURCES) $(SCHEME_SOURCES) + LILYPOND_VERSION=$(TOPLEVEL_VERSION) $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND_BOOK_PROCESS) $(LILYPOND_BOOK_INCLUDES) $(LILYPOND_BOOK_LILYPOND_FLAGS)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) $(LILYPOND_BOOK_FLAGS) --redirect-lilypond-output $< + + +$(outdir)/%.html.omf: %.tely + $(call GENERATE_OMF,html) + +$(outdir)/%.pdf.omf: %.tely + $(call GENERATE_OMF,pdf) + +$(outdir)/%.html.omf: $(outdir)/%.texi | $(OUT_TEXINFO_MANUALS) + $(call GENERATE_OMF,html) + +$(outdir)/%.pdf.omf: $(outdir)/%.texi | $(OUT_TEXINFO_MANUALS) + $(call GENERATE_OMF,pdf) + +$(outdir)/others-did.itexi $(outdir)/we-wrote.itexi: $(outdir)/%.itexi: $(top-src-dir)/Documentation/web/%.bib $(top-src-dir)/Documentation/lily-bib.bst + BSTINPUTS=$(top-src-dir)/Documentation/web/ $(buildscript-dir)/bib2texi \ + -s $(top-src-dir)/Documentation/lily-bib \ + -o $(outdir)/$*.itexi \ + -q \ + $(top-src-dir)/Documentation/web/$*.bib