aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/serializer/library/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/serializer/library/makefile')
-rw-r--r--dist/examples/cxx/serializer/library/makefile56
1 files changed, 56 insertions, 0 deletions
diff --git a/dist/examples/cxx/serializer/library/makefile b/dist/examples/cxx/serializer/library/makefile
new file mode 100644
index 0000000..58f9dcd
--- /dev/null
+++ b/dist/examples/cxx/serializer/library/makefile
@@ -0,0 +1,56 @@
+root := ../../../..
+
+include $(root)/build/cxx/rules.make
+
+# Build.
+#
+EXTRA_CPPFLAGS += -I$(root)/libxsde
+
+ifeq ($(XSDE_LONGLONG),n)
+EXTRA_XSDFLAGS += --no-long-long
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-validation
+endif
+
+ifeq ($(XSDE_REUSE_STYLE),mixin)
+EXTRA_XSDFLAGS += --reuse-style-mixin
+endif
+
+ifeq ($(XSDE_POLYMORPHIC),y)
+EXTRA_XSDFLAGS += --runtime-polymorphic
+endif
+
+ifeq ($(XSDE_REUSE_STYLE),mixin)
+impl := library-simpl-mixin
+else
+impl := library-simpl-tiein
+endif
+
+driver: driver.o library-sskel.o $(impl).o $(root)/libxsde/xsde/libxsde.a
+
+driver.o: driver.cxx $(impl).hxx library-sskel.hxx library.hxx
+$(impl).o: $(impl).cxx $(impl).hxx library-sskel.hxx library.hxx
+library-sskel.o: library-sskel.cxx library-sskel.hxx library.hxx
+
+.PRECIOUS: %-sskel.hxx %-sskel.cxx
+
+%-sskel.hxx %-sskel.cxx: %.xsd %.map
+ $(root)/bin/xsde cxx-serializer $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--type-map $*.map $<
+
+
+# Test.
+#
+.PHONY: test
+test: driver
+ ./driver
+
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f library-sskel.?xx $(impl).o library-sskel.o driver.o driver
+