X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=make%2Fly-rules.make;h=b9581518ca2974720a01b114857e0f2fb79b86a2;hb=e904008e0f0b56f7cacd330a72c2b56ec6906a93;hp=e409630ef1adf2c1c1088ef01332f05f3179fa85;hpb=e70b859dd30b27fb61719f665df83cb594511c76;p=lilypond.git diff --git a/make/ly-rules.make b/make/ly-rules.make index e409630ef1..b9581518ca 100644 --- a/make/ly-rules.make +++ b/make/ly-rules.make @@ -1,56 +1,46 @@ -# Mudela_rules.make +.SUFFIXES: .doc .dvi .tely .texi .ly -.SUFFIXES: .doc .dvi .mudtex .tely .texi .ly - -$(outdir)/%.latex: %.doc - rm -f $@ - $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES)\ -$(LILYPOND_BOOK_FLAGS) --verbose --dependencies --outdir=$(outdir) $< - chmod -w $@ +$(outdir)/%.latex $(outdir)/%.fonts.ps: %.doc + $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --verbose $(LILYPOND_BOOK_FLAGS) $< # don't do ``cd $(outdir)'', and assume that $(outdir)/.. is the src dir. # it is not, for --srcdir builds $(outdir)/%.texi: %.tely - rm -f $@ - set|egrep '(TEX|LILY)' # ugh, what's this? - $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --dependencies --outdir=$(outdir) --format=texi --verbose $(LILYPOND_BOOK_FLAGS) $< - chmod -w $@ + rm -f $$(grep -LF '% eof' $(outdir)/lily-*systems.tex 2>/dev/null) + $(PYTHON) $(LILYPOND_BOOK) --psfonts=$(basename $<).fonts.ps $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) $< $(outdir)/%.texi: $(outdir)/%.tely - rm -f $@ - set|egrep '(TEX|LILY)' # ugh, what's this? - $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --dependencies --outdir=$(outdir) --format=texi $(LILYPOND_BOOK_FLAGS) $< - rm -f $< - chmod -w $@ - -# nexi: no-lily texi -# for plain info doco: don't run lily + rm -f $$(grep -LF '% eof' $(outdir)/lily-*systems.tex 2>/dev/null) + $(PYTHON) $(LILYPOND_BOOK) --psfonts=$(notdir $(basename $<)).fonts.ps $(LILYPOND_BOOK_INCLUDES) --process='$(LILYPOND) $(LILYPOND_BOOK_INCLUDES)' --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) $< +# +# DON'T REMOVE SOURCE FILES, otherwise the .TEXI ALWAYS OUT OF DATE. +# rm -f $< + +# nexi: n[o-lilypond t]exi +# for plain info doco: don't run lilypond $(outdir)/%.nexi: %.tely - rm -f $@ - $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --dependencies --outdir=$(outdir) --format=texi --no-lily $(LILYPOND_BOOK_FLAGS) $< - mv $(@D)/$(*F).texi $@ - chmod -w $@ + rm -f $(outdir)/$*.texi + $(PYTHON) $(LILYPOND_BOOK) $(LILYPOND_BOOK_INCLUDES) --output=$(outdir) --format=$(LILYPOND_BOOK_FORMAT) --verbose $(LILYPOND_BOOK_FLAGS) --process='true' $< + mv $(outdir)/$*.texinfo $@ 2>/dev/null || mv $(outdir)/$*.texi $@ -# nfo: info from non-lily texi $(outdir)/%.info: $(outdir)/%.nexi - $(MAKEINFO) --output=$(outdir)/$(*F).info $< + $(MAKEINFO) -I $(outdir) --output=$(outdir)/$(*F).info $< -# nfo: info from non-lily texi -#$(outdir)/%.nfo: $(outdir)/%.nexi -# $(MAKEINFO) --output=$(outdir)/$(*F).info $< +$(outdir)/%.html.omf: %.tely + $(call GENERATE_OMF,html) -$(outdir)/%.tex: $(outdir)/%.ly - $(LILYPOND) $(LILYPOND_BOOK_INCLUDES) -o $@ $< +$(outdir)/%.pdf.omf: %.tely + $(call GENERATE_OMF,pdf) -# -# Timothy's booklet -# -$(outdir)/%-book.ps: $(outdir)/%.ps - psbook $< $<.tmp - pstops '2:0L@.7(21cm,0)+1L@.7(21cm,14.85cm)' $<.tmp $@ +$(outdir)/%.ps.gz.omf: %.tely + $(call GENERATE_OMF,ps.gz) + +$(outdir)/%.html.omf: $(outdir)/%.texi + $(call GENERATE_OMF,html) -$(outdir)/%.pdf: $(outdir)/%.dvi - dvips -u lilypond.map -o $@.pdfps -Ppdf $< - ps2pdf $@.pdfps $@ +$(outdir)/%.pdf.omf: $(outdir)/%.texi + $(call GENERATE_OMF,pdf) +$(outdir)/%.ps.gz.omf: $(outdir)/%.texi + $(call GENERATE_OMF,ps.gz)