aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/compositors/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/hybrid/compositors/makefile')
-rw-r--r--dist/examples/cxx/hybrid/compositors/makefile53
1 files changed, 53 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/compositors/makefile b/dist/examples/cxx/hybrid/compositors/makefile
new file mode 100644
index 0000000..fbc44f9
--- /dev/null
+++ b/dist/examples/cxx/hybrid/compositors/makefile
@@ -0,0 +1,53 @@
+root := ../../../..
+
+include $(root)/build/cxx/rules.make
+
+# Build.
+#
+EXTRA_CPPFLAGS := -I$(root)/libxsde
+
+ifeq ($(XSDE_STL),n)
+EXTRA_XSDFLAGS += --no-stl
+endif
+
+ifeq ($(XSDE_IOSTREAM),n)
+EXTRA_XSDFLAGS += --no-iostream
+endif
+
+ifeq ($(XSDE_EXCEPTIONS),n)
+EXTRA_XSDFLAGS += --no-exceptions
+endif
+
+ifeq ($(XSDE_LONGLONG),n)
+EXTRA_XSDFLAGS += --no-long-long
+endif
+
+ifeq ($(XSDE_PARSER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-validation
+endif
+
+ifeq ($(XSDE_REUSE_STYLE),mixin)
+EXTRA_XSDFLAGS += --reuse-style-mixin
+endif
+
+driver: driver.o compositors.o $(root)/libxsde/xsde/libxsde.a
+
+driver.o: driver.cxx compositors.hxx
+compositors.o: compositors.cxx compositors.hxx
+
+.PRECIOUS: %.hxx %.cxx
+
+%.hxx %.cxx: %.xsd
+ $(root)/bin/xsde cxx-hybrid $(XSDFLAGS) $(EXTRA_XSDFLAGS) $<
+
+# Test.
+#
+.PHONY: test
+test: driver
+ ./driver
+
+# Clean.
+#
+.PHONY: clean
+clean:
+ rm -f compositors.?xx compositors.o driver.o driver