Skip to content
Snippets Groups Projects
Commit dab8885a authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1998-09-14 15:49:19 by simonm]

quick fix for multi-file sgml docs.
parent 2fd80d58
No related merge requests found
...@@ -876,13 +876,17 @@ SGML_TEXT = $(SGML_DOC).txt ...@@ -876,13 +876,17 @@ SGML_TEXT = $(SGML_DOC).txt
else # no SGML_DOC else # no SGML_DOC
ifeq "$(VSGML_SRCS)" ""
VSGML_SRCS = $(wildcard *.vsgml) VSGML_SRCS = $(wildcard *.vsgml)
endif
ifeq "$(SGML_SRCS)" ""
ifneq "$(VSGML_SRCS)" "" ifneq "$(VSGML_SRCS)" ""
SGML_SRCS = $(addsuffix .sgml, $(basename $(VSGML_SRCS))) SGML_SRCS = $(addsuffix .sgml, $(basename $(VSGML_SRCS)))
else else
SGML_SRCS = $(wildcard *.sgml) SGML_SRCS = $(wildcard *.sgml)
endif endif
endif
SGML_DVI = $(addsuffix .dvi, $(basename $(SGML_SRCS))) SGML_DVI = $(addsuffix .dvi, $(basename $(SGML_SRCS)))
SGML_PS = $(addsuffix .ps, $(basename $(SGML_SRCS))) SGML_PS = $(addsuffix .ps, $(basename $(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