Skip to content
Snippets Groups Projects
Commit aa104ab9 authored by chak@cse.unsw.edu.au.'s avatar chak@cse.unsw.edu.au.
Browse files

[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*
parent f6ce4188
No related merge requests found
TOP = ..
include $(TOP)/mk/boilerplate.mk
SGML_DOC = building
SGML_DOC = building ffi-art
include $(TOP)/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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment