aboutsummaryrefslogtreecommitdiff
path: root/xml/makefile
blob: 3e5ef871ff512f391b24ba912cf5c45729b8c2eb (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# file      : xml/makefile
# copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
# license   : MIT; see accompanying LICENSE file

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

sources := qname.cxx parser.cxx serializer.cxx value-traits.cxx

# Expat.
#
expat_sources := xmlparse.c xmlrole.c xmltok.c
expat_headers := expat.h expat_external.h 
expat_dist    := ascii.h asciitab.h config.h iasciitab.h internal.h \
latin1tab.h nametab.h utf8tab.h xmlrole.h xmltok.h xmltok_impl.c \
xmltok_impl.h xmltok_ns.c README LICENSE

expat_sources := $(addprefix details/expat/,$(expat_sources))
expat_headers := $(addprefix details/expat/,$(expat_headers))
expat_dist    := $(addprefix details/expat/,$(expat_dist))

# Genx.
#
genx_sources := details/genx/genx.c details/genx/char-props.c
genx_headers := details/genx/genx.h
genx_dist    := details/genx/README details/genx/LICENSE

c_tun     := $(expat_sources) $(genx_sources)
c_obj     := $(addprefix $(out_base)/,$(c_tun:.c=.o))
c_od      := $(c_obj:.o=.o.d)

cxx_tun   := $(sources)
cxx_obj   := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o))
cxx_od    := $(cxx_obj:.o=.o.d)

studxml.l             := $(out_base)/studxml.l
studxml.l.cpp-options := $(out_base)/studxml.l.cpp-options

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

# Build.
#
$(studxml.l): $(c_obj) $(cxx_obj)

$(c_obj) $(cxx_obj) $(c_od) $(cxx_od): $(studxml.l.cpp-options) \
  $(out_base)/details/config.h
$(studxml.l.cpp-options): value := -I$(out_root) -I$(src_root)

$(call include,$(bld_root)/ld/configuration-lib.make) # ld_lib_type

$(out_base)/details/config.h: | $(out_base)/details/.
	@echo '/* file      : xml/details/config.h'                >$@
	@echo ' * note      : automatically generated'            >>$@
	@echo ' */'                                               >>$@
	@echo '#ifndef XML_DETAILS_CONFIG_H'                      >>$@
	@echo '#define XML_DETAILS_CONFIG_H'                      >>$@
	@echo ''                                                  >>$@
	@echo '#define LIBSTUDXML_BYTEORDER 1234'                 >>$@
ifeq ($(ld_lib_type),archive)
	@echo '#define LIBSTUDXML_STATIC_LIB'                     >>$@
endif
	@echo ''                                                  >>$@
	@echo '#endif /* XML_DETAILS_CONFIG_H */'                 >>$@

$(call include-dep,$(c_od) $(cxx_od),$(c_obj) $(cxx_obj),$(out_base)/details/config.h)

# Convenience alias for default target.
#
$(out_base)/: $(studxml.l)

# Dist.
#
$(dist): export sources := $(sources)
$(dist): export expat_sources := $(expat_sources)
$(dist): export expat_headers := $(expat_headers)
$(dist): export genx_sources := $(genx_sources)
$(dist): export genx_headers := $(genx_headers)
$(dist): export headers := $(subst $(src_base)/,,$(shell find $(src_base) \
-name '*.hxx' -o -name '*.ixx' -o -name '*.txx'))
$(dist): data_dist := details/config-vc.h $(expat_dist) $(genx_dist)
$(dist): export extra_dist := $(data_dist) libstudxml-vc9.vcproj \
libstudxml-vc10.vcxproj libstudxml-vc10.vcxproj.filters \
libstudxml-vc11.vcxproj libstudxml-vc11.vcxproj.filters
$(dist): export interface_version = $(shell sed -e \
's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version)

$(dist):
	$(call dist-data,$(sources) $(expat_sources) $(genx_sources))
	$(call dist-data,$(headers) $(expat_headers) $(genx_headers))
	$(call dist-data,$(data_dist) details/config.h.in)
	$(call meta-vc9proj,libstudxml-vc9.vcproj)
	$(call meta-vc10proj,libstudxml-vc10.vcxproj)
	$(call meta-vc10proj,libstudxml-vc11.vcxproj)
	$(call meta-automake)

# Clean.
#
$(clean): $(studxml.l).o.clean       \
  $(studxml.l.cpp-options).clean     \
  $(addsuffix .cxx.clean,$(c_obj))   \
  $(addsuffix .cxx.clean,$(c_od))    \
  $(addsuffix .cxx.clean,$(cxx_obj)) \
  $(addsuffix .cxx.clean,$(cxx_od))
	$(call message,rm $$1,rm -f $$1,$(out_base)/details/config.h)

# Generated .gitignore.
#
ifeq ($(out_base),$(src_base))
$(studxml.l): | $(out_base)/.gitignore

$(out_base)/.gitignore: files := details/config.h
$(clean): $(out_base)/.gitignore.clean

$(call include,$(bld_root)/git/gitignore.make)
endif

# How to.
#
$(call include,$(bld_root)/dist.make)
$(call include,$(bld_root)/install.make)
$(call include,$(bld_root)/meta/vc9proj.make)
$(call include,$(bld_root)/meta/vc10proj.make)
$(call include,$(bld_root)/meta/vc11proj.make)
$(call include,$(bld_root)/meta/automake.make)

$(call include,$(bld_root)/c/c-o.make)
$(call include,$(bld_root)/c/c-d.make)
$(call include,$(bld_root)/cxx/cxx-o.make)
$(call include,$(bld_root)/cxx/cxx-d.make)
$(call include,$(bld_root)/cxx/o-l.make)