1# ``Licensed under the Apache License, Version 2.0 (the "License");
2# you may not use this file except in compliance with the License.
3# You may obtain a copy of the License at
4#
5#     http://www.apache.org/licenses/LICENSE-2.0
6#
7# Unless required by applicable law or agreed to in writing, software
8# distributed under the License is distributed on an "AS IS" BASIS,
9# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10# See the License for the specific language governing permissions and
11# limitations under the License.
12#
13# The Initial Developer of the Original Code is Ericsson Utvecklings AB.
14# Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings
15# AB. All Rights Reserved.''
16#
17include $(ERL_TOP)/make/target.mk
18include $(ERL_TOP)/make/$(TARGET)/otp.mk
19
20# ----------------------------------------------------
21# Application version
22# ----------------------------------------------------
23include ../../vsn.mk
24VSN=$(EDOC_VSN)
25APPLICATION=edoc
26
27# ----------------------------------------------------
28# Target Specs
29# ----------------------------------------------------
30XML_APPLICATION_FILES = ref_man.xml
31XML_REF1_FILES = \
32	edoc_cmd.xml
33EDOC_REF3_FILES = \
34	edoc.xml \
35	edoc_doclet.xml \
36	edoc_doclet_chunks.xml \
37	edoc_extract.xml \
38	edoc_layout.xml \
39	edoc_layout_chunks.xml \
40	edoc_lib.xml \
41	edoc_run.xml
42
43XML_PART_FILES = part.xml
44EDOC_CHAPTER_FILE = chapter.xml
45XML_NOTES_FILES = notes.xml
46
47BOOK_FILES = book.xml
48
49XML_FILES=\
50	$(BOOK_FILES) $(XML_APPLICATION_FILES) \
51	$(XML_REF1_FILES) $(XML_PART_FILES) $(XML_NOTES_FILES)
52
53INCLUDES_DIR = ../../include
54INCLUDES = $(INCLUDES_DIR)/edoc_doclet.hrl
55
56DTDS_DIR = ../../priv
57DTDS = $(DTDS_DIR)/edoc.dtd
58
59HTML_EXTRA_FILES = $(DTDS) $(INCLUDES)
60
61include $(ERL_TOP)/make/doc.mk
62