From aa104ab9b2d8e4d86e9f0c2d415db8bfd860781c Mon Sep 17 00:00:00 2001
From: chak <unknown>
Date: Sat, 17 Jun 2000 07:52:30 +0000
Subject: [PATCH] [project @ 2000-06-17 07:52:30 by chak] * SGML_DOC can now
 hold a _list_ of sgml documentations to build * both building.sgml and
 ffi-art.sgml are now build in docs/

*MERGE*
---
 docs/Makefile |  2 +-
 mk/target.mk  | 14 +++++++-------
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/docs/Makefile b/docs/Makefile
index ca0eb1f5a8c2..14684398916e 100644
--- a/docs/Makefile
+++ b/docs/Makefile
@@ -1,6 +1,6 @@
 TOP = ..
 include $(TOP)/mk/boilerplate.mk
 
-SGML_DOC = building
+SGML_DOC = building ffi-art
 
 include $(TOP)/mk/target.mk
diff --git a/mk/target.mk b/mk/target.mk
index 81f4634ae838..2158db340c5e 100644
--- a/mk/target.mk
+++ b/mk/target.mk
@@ -962,14 +962,14 @@ SGML_SRCS = $(wildcard *.sgml)
 endif
 endif
 
-SGML_TEX  = $(SGML_DOC).tex
-SGML_DVI  = $(SGML_DOC).dvi
-SGML_PS   = $(SGML_DOC).ps
-SGML_PDF  = $(SGML_DOC).pdf
-SGML_RTF  = $(SGML_DOC).rtf
-SGML_HTML = $(SGML_DOC).html
+SGML_TEX  = $(addsuffix .tex,$(SGML_DOC))
+SGML_DVI  = $(addsuffix .dvi,$(SGML_DOC))
+SGML_PS   = $(addsuffix .ps,$(SGML_DOC))
+SGML_PDF  = $(addsuffix .pdf,$(SGML_DOC))
+SGML_RTF  = $(addsuffix .rtf,$(SGML_DOC))
+SGML_HTML = $(addsuffix .html,$(SGML_DOC))
 # HTML output goes in a subdirectory on its own.
-SGML_TEXT = $(SGML_DOC).txt
+SGML_TEXT = $(addsuffix .txt,$(SGML_DOC))
 
 $(SGML_DVI) $(SGML_PS) $(SGML_HTML) $(SGML_TEXT) :: $(SGML_SRCS)
 
-- 
GitLab