blob: fc5996259d9a2a06dc4769a574ff22cf3b54271b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#
# Copyright (C) 1996,1997 Ericsson Telecommunications
# Author: Lars Thorsen
#
include $(ERL_TOP)/make/target.mk
include $(ERL_TOP)/make/$(TARGET)/otp.mk
# ----------------------------------------------------
# Release directory specification
# ----------------------------------------------------
RELSYSDIR = $(RELEASE_PATH)/doc
# ----------------------------------------------------
# Target Specs
# ----------------------------------------------------
#
# Common macros
#
GIF_FILES= \
min_head.gif \
ps.gif
# ----------------------------------------------------
# Target Specs
# ----------------------------------------------------
docs:
pdf:
ps:
debug opt:
clean:
@echo "No action" >/dev/null
#
# Release Targets
#
include $(ERL_TOP)/make/otp_release_targets.mk
ifeq ($(DOCTYPE),pdf)
release_docs_spec: pdf
else
ifeq ($(DOCTYPE),ps)
release_docs_spec: ps
else
release_docs_spec: docs
$(INSTALL_DIR) $(RELSYSDIR)/pics
$(INSTALL_DATA) $(GIF_FILES) $(RELSYSDIR)/pics
endif
endif
release_spec:
|