summaryrefslogtreecommitdiff
path: root/doc/cxx/tree/makefile
blob: 416373035f00a03f0f49c3cfdef487286db15d68 (plain)
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
# file      : doc/cxx/tree/makefile
# copyright : Copyright (c) 2006-2014 Code Synthesis Tools CC
# license   : GNU GPL v2 + exceptions; see accompanying LICENSE file

include $(dir $(lastword $(MAKEFILE_LIST)))../../../build/bootstrap.make

docs := guide manual

default  := $(out_base)/
install  := $(out_base)/.install
dist     := $(out_base)/.dist
dist-win := $(out_base)/.dist-win
clean    := $(out_base)/.clean

# Build.
#
$(default): $(addprefix $(out_base)/,$(addsuffix /,$(docs)))

# Install & Dist.
#
dist-common := $(out_base)/.dist-common

$(install): path := $(subst $(src_root)/doc/,,$(src_base))
$(dist-common): path := $(subst $(src_root)/,,$(src_base))

$(install): $(addprefix $(out_base)/,$(addsuffix /.install,$(docs)))
	$(call install-dir,$(src_base)/reference,$(install_doc_dir)/xsd/$(path)/reference)

$(dist-common):
	$(call install-dir,$(src_base)/reference,$(dist_prefix)/$(path)/reference)

$(dist): $(dist-common) $(addprefix $(out_base)/,$(addsuffix /.dist,$(docs)))
$(dist-win): $(dist-common) $(addprefix $(out_base)/,$(addsuffix /.dist-win,$(docs)))

# Clean.
#
$(clean): $(addprefix $(out_base)/,$(addsuffix /.clean,$(docs)))

$(call include,$(bld_root)/install.make)

$(foreach m,$(docs),$(call import,$(src_base)/$m/makefile))