summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsimonmar <unknown>1999-12-09 11:24:05 +0000
committersimonmar <unknown>1999-12-09 11:24:05 +0000
commit46acf684ce75075be17d2f3f30cabc08cc363851 (patch)
tree08ee635f449835896e78a8fa29e20f0b1e43764f
parent77335f843fe98b8f6624285bce6b4b3fdda426b3 (diff)
downloadhaskell-46acf684ce75075be17d2f3f30cabc08cc363851.tar.gz
[project @ 1999-12-09 11:24:05 by simonmar]
cleanups & fixes Obtained-from: Michael Weber <michael.weber@post.rwth-aachen.de>
-rw-r--r--mk/target.mk8
1 files changed, 6 insertions, 2 deletions
diff --git a/mk/target.mk b/mk/target.mk
index 9ec355c3e4..3e7fdde7d2 100644
--- a/mk/target.mk
+++ b/mk/target.mk
@@ -878,6 +878,7 @@ SGML_PDF = $(SGML_DOC).pdf
SGML_RTF = $(SGML_DOC).rtf
SGML_HTML = $(SGML_DOC).html
# HTML output goes in a subdirectory on its own.
+SGML_TEXT = $(SGML_DOC).txt
$(SGML_DVI) $(SGML_PS) $(SGML_INFO) $(SGML_HTML) $(SGML_TEXT) :: $(SGML_SRCS)
@@ -886,8 +887,11 @@ ps :: $(SGML_PS)
pdf :: $(SGML_PDF)
rtf :: $(SGML_RTF)
html :: $(SGML_HTML)
+txt :: $(SGML_TEXT)
-CLEAN_FILES += $(SGML_TEXT) $(SGML_PS) $(SGML_DVI) $(SGML_PDF) $(SGML_RTF) $(SGML_HTML)
+CLEAN_FILES += $(SGML_TEXT) $(SGML_PS) $(SGML_DVI) $(SGML_PDF) $(SGML_RTF) $(SGML_HTML) $(SGML_DOC)-*.html
+# can't use $(SGML_SRCS) here, it was maybe used elsewhere
+MOSTLY_CLEAN_FILES += $(patsubst %.vsgml, %.sgml, $(VSGML_SRCS))
clean ::
$(RM) -rf $(SGML_DOC)
@@ -1047,7 +1051,7 @@ endif # if way
ifneq "$(SUBDIRS)" ""
-all docs runtests boot TAGS clean veryclean maintainer-clean install info ::
+all docs runtests boot TAGS clean veryclean maintainer-clean install info html ps dvi txt::
@echo "------------------------------------------------------------------------"
@echo "===fptools== Recursively making \`$@' in $(SUBDIRS) ..."
@echo "PWD = $(shell pwd)"