aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/parser/mixed/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/parser/mixed/makefile')
-rw-r--r--dist/examples/cxx/parser/mixed/makefile43
1 files changed, 43 insertions, 0 deletions
diff --git a/dist/examples/cxx/parser/mixed/makefile b/dist/examples/cxx/parser/mixed/makefile
new file mode 100644
index 0000000..412edfe
--- /dev/null
+++ b/dist/examples/cxx/parser/mixed/makefile
@@ -0,0 +1,43 @@
+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_PARSER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-validation
+endif
+
+ifeq ($(XSDE_POLYMORPHIC),y)
+EXTRA_XSDFLAGS += --runtime-polymorphic
+endif
+
+driver: driver.o text-pskel.o $(root)/libxsde/xsde/libxsde.a
+
+driver.o: driver.cxx text-pskel.hxx anchor.hxx
+text-pskel.o: text-pskel.cxx text-pskel.hxx anchor.hxx
+
+.PRECIOUS: %-pskel.hxx %-pskel.cxx
+
+%-pskel.hxx %-pskel.cxx: %.xsd %.map
+ $(root)/bin/xsde cxx-parser $(XSDFLAGS) $(EXTRA_XSDFLAGS) \
+--type-map $*.map $<
+
+# Test.
+#
+.PHONY: test
+test: driver text.xml
+ ./driver text.xml
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f text-pskel.?xx text-pskel.o driver.o driver
+