From e168bf6b916b0f15f59dced9cd40f23f8a8a4c4b Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 20 Dec 2004 16:21:50 +0000 Subject: [PATCH] * fix include dependencies --- docs/Makefile.4ht | 18 ++++++++---------- docs/Makefile.hev | 16 +++++++--------- 2 files changed, 15 insertions(+), 19 deletions(-) diff --git a/docs/Makefile.4ht b/docs/Makefile.4ht index 8a5a3b3d13..a14d9f53af 100644 --- a/docs/Makefile.4ht +++ b/docs/Makefile.4ht @@ -4,8 +4,6 @@ HTFONTS=/usr/share/texmf/tex/generic/tex4ht/ht-fonts/ .PHONY: preamble3 preamble4 $(HTML) -htmlincludes: includes - preamble3: cp preamble.ts3 preamble.inc @@ -24,12 +22,12 @@ preamble4: rm $(basename $<)*.html -user: htmlincludes preamble3 user.html -units: htmlincludes preamble3 units.html -prog: htmlincludes preamble3 prog.html -onechap: htmlincludes preamble3 onechap.html -ref: htmlincludes preamble4 ref.html -fpdoc: htmlincludes preamble3 fpdoc.html -chart: htmlincludes preamble3 chart.html +user: $(INCLUDES) preamble3 user.html +units: $(INCLUDES) preamble3 units.html +prog: $(INCLUDES) preamble3 prog.html +onechap: $(INCLUDES) preamble3 onechap.html +ref: $(INCLUDES) preamble4 ref.html +fpdoc: $(INCLUDES) preamble3 fpdoc.html +chart: $(INCLUDES) preamble3 chart.html -html: htmlincludes $(HTML) +html: $(INCLUDES) $(HTML) diff --git a/docs/Makefile.hev b/docs/Makefile.hev index 11e58d5333..1d53eec650 100644 --- a/docs/Makefile.hev +++ b/docs/Makefile.hev @@ -2,16 +2,14 @@ # Create HTML using hevea tex 2 html conversion # -htmlincludes: includes - %.html: %.tex fpc-hevea.tex $(HEVEA) $(HEVEAOPTS) $< -user: htmlincludes user.html -units: htmlincludes units.html -prog: htmlincludes prog.html -onechap: htmlincludes onechap.html -ref: htmlincludes ref.html -fpdoc: htmlincludes fpdoc.html +user: $(INCLUDES) user.html +units: $(INCLUDES) units.html +prog: $(INCLUDES) prog.html +onechap: $(INCLUDES) onechap.html +ref: $(INCLUDES) ref.html +fpdoc: $(INCLUDES) fpdoc.html -html: htmlincludes $(addsuffix .html,$(HTML)) +html: $(INCLUDES) $(addsuffix .html,$(HTML))