aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/evolution/makefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-10-18 11:17:51 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-10-18 11:17:51 +0200
commitd80d096ee8743fd6f7382d274272b0b6d7faf9bf (patch)
treed0f0bee1e645cb2b86b6837ac0db8a7d2821e533 /dist/examples/cxx/hybrid/evolution/makefile
parent0e4637025fa8d1b4234b0512561d31f0dd023843 (diff)
Support for schema evolution using substitution groups
New examples: hybrid/evolution/ignore and hybrid/evolution/passthrough.
Diffstat (limited to 'dist/examples/cxx/hybrid/evolution/makefile')
-rw-r--r--dist/examples/cxx/hybrid/evolution/makefile27
1 files changed, 27 insertions, 0 deletions
diff --git a/dist/examples/cxx/hybrid/evolution/makefile b/dist/examples/cxx/hybrid/evolution/makefile
new file mode 100644
index 0000000..7a87d36
--- /dev/null
+++ b/dist/examples/cxx/hybrid/evolution/makefile
@@ -0,0 +1,27 @@
+root := ../../../..
+
+include $(root)/build/config.make
+
+dirs :=
+
+ifeq ($(XSDE_IOSTREAM),y)
+ifeq ($(XSDE_EXCEPTIONS),y)
+
+ifeq ($(XSDE_STL),y)
+dirs += ignore passthrough
+endif
+
+endif
+endif
+
+.PHONY: all $(dirs)
+
+all: $(dirs)
+
+$(dirs):
+ @$(MAKE) -C $@ $(MAKECMDGOALS)
+
+makefile: ;
+%.make:: ;
+
+%:: $(dirs) ;