aboutsummaryrefslogtreecommitdiff
path: root/cutl/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-03-08 17:41:00 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-03-08 17:41:00 +0200
commit2ac86dfdafb9bf4d4e9252260a431755b56d8ebe (patch)
tree30a19391906b913b8a0773c7fe5a4b046c0703c4 /cutl/makefile
parentdf1e7318da3320cfcfaee7f3c1f00a9eee7c9d25 (diff)
Add support for XML parsing and serialization
Diffstat (limited to 'cutl/makefile')
-rw-r--r--cutl/makefile56
1 files changed, 45 insertions, 11 deletions
diff --git a/cutl/makefile b/cutl/makefile
index 5c527bb..61b47eb 100644
--- a/cutl/makefile
+++ b/cutl/makefile
@@ -10,6 +10,8 @@ sources += fs/exception.cxx fs/path.cxx fs/auto-remove.cxx
sources += re/re.cxx
+sources += xml/qname.cxx xml/parser.cxx xml/serializer.cxx
+
sources += \
compiler/context.cxx \
compiler/type-info.cxx \
@@ -34,6 +36,28 @@ details/boost/regex/src/static_mutex.cxx \
details/boost/regex/src/icu.cxx \
details/boost/regex/src/winstances.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) $(boost_sources)
cxx_obj := $(addprefix $(out_base)/,$(cxx_tun:.cxx=.o))
cxx_od := $(cxx_obj:.o=.o.d)
@@ -49,28 +73,28 @@ clean := $(out_base)/.clean
# Build.
#
-$(cutl.l): $(cxx_obj)
+$(cutl.l): $(c_obj) $(cxx_obj)
-$(cxx_obj) $(cxx_od): $(cutl.l.cpp-options)
+$(c_obj) $(cxx_obj) $(c_od) $(cxx_od): $(cutl.l.cpp-options) $(out_base)/details/config.h
$(cutl.l.cpp-options): value := -I$(out_root) -I$(src_root)
-$(cxx_obj) $(cxx_od): $(odb_tracer.l.cpp-options) $(out_base)/details/config.h
$(call include,$(bld_root)/ld/configuration-lib.make) # ld_lib_type
$(out_base)/details/config.h:
- @echo '// file : cutl/details/config.h' >$@
- @echo '// note : automatically generated' >>$@
- @echo '' >>$@
+ @echo '/* file : cutl/details/config.h' >$@
+ @echo ' * note : automatically generated' >>$@
+ @echo ' */' >>$@
@echo '#ifndef CUTL_DETAILS_CONFIG_H' >>$@
@echo '#define CUTL_DETAILS_CONFIG_H' >>$@
@echo '' >>$@
+ @echo '#define LIBCUTL_BYTEORDER 1234' >>$@
ifeq ($(ld_lib_type),archive)
@echo '#define LIBCUTL_STATIC_LIB' >>$@
endif
@echo '' >>$@
- @echo '#endif // CUTL_DETAILS_CONFIG_H' >>$@
+ @echo '#endif /* CUTL_DETAILS_CONFIG_H */' >>$@
-$(call include-dep,$(cxx_od),$(cxx_obj),$(out_base)/details/config.h)
+$(call include-dep,$(c_od) $(cxx_od),$(c_obj) $(cxx_obj),$(out_base)/details/config.h)
# Convenience alias for default target.
#
@@ -80,18 +104,24 @@ $(out_base)/: $(cutl.l)
#
$(dist): export sources := $(sources)
$(dist): export boost_sources := $(boost_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 $(subst $(src_base)/,,$(shell find \
$(src_base)/details/boost -type f -name '*.hpp')) details/boost/LICENSE \
-details/boost/README
+details/boost/README $(expat_dist) $(genx_dist)
$(dist): export extra_dist := $(data_dist) libcutl-vc9.vcproj \
libcutl-vc10.vcxproj libcutl-vc10.vcxproj.filters
$(dist): export interface_version = $(shell sed -e \
's/^\([0-9]*\.[0-9]*\).*/\1/' $(src_root)/version)
$(dist):
- $(call dist-data,$(sources) $(boost_sources) $(headers) $(data_dist) details/config.h.in)
+ $(call dist-data,$(sources) $(boost_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,libcutl-vc9.vcproj)
$(call meta-vc10proj,libcutl-vc10.vcxproj)
$(call meta-automake)
@@ -109,6 +139,8 @@ $(install_inc_dir)/cutl/details/config.h)
#
$(clean): $(cutl.l).o.clean \
$(cutl.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)
@@ -132,6 +164,8 @@ $(call include,$(bld_root)/meta/vc9proj.make)
$(call include,$(bld_root)/meta/vc10proj.make)
$(call include,$(bld_root)/meta/automake.make)
-$(call include,$(bld_root)/cxx/o-l.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)