From: Reinhold Kainhofer Date: Mon, 31 Mar 2008 23:49:24 +0000 (+0200) Subject: texi2html: Copy the .css file after creating html files with texi2html X-Git-Tag: release/2.11.58-1~32^2~175 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=55f9b832c5aa4f0e3f7645ed36516efbaa24a361;p=lilypond.git texi2html: Copy the .css file after creating html files with texi2html --- diff --git a/stepmake/stepmake/texinfo-rules.make b/stepmake/stepmake/texinfo-rules.make index 94d2ffce49..253c3d6bef 100644 --- a/stepmake/stepmake/texinfo-rules.make +++ b/stepmake/stepmake/texinfo-rules.make @@ -46,13 +46,16 @@ $(outdir)/%.info: $(outdir)/%.texi $(outdir)/$(INFO_IMAGES_DIR).info-images-dir. $(outdir)/%/index.html: $(outdir)/%.texi mkdir -p $(dir $@) $(TEXI2HTML) --I=$(outdir) --output=$(dir $@) --prefix=index --split=section $(TEXI2HTML_INIT) $< + cp $(top-src-dir)/Documentation/lilypond.css $(dir $@) # TODO: Pass -D bigpage to texi2html $(outdir)/%-big-page.html: $(outdir)/%.texi $(TEXI2HTML) --I=$(outdir) --output=$@ $(TEXI2HTML_INIT) $< + cp $(top-src-dir)/Documentation/lilypond.css $(dir $@) $(outdir)/%.html: $(outdir)/%.texi $(TEXI2HTML) --I=$(outdir) --output=$@ $(TEXI2HTML_INIT) $< + cp $(top-src-dir)/Documentation/lilypond.css $(dir $@) $(outdir)/%.html.omf: %.texi $(call GENERATE_OMF,html)