aboutsummaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-22 07:35:03 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-22 07:35:03 +0200
commit4de101ac6a2c078bbbf63744d1aaabb459025668 (patch)
tree05044f884dbfd29731b881264639626476fb9486 /dist
parent80121bfc77fc5ca917ba9b90a5f8a9d0b1eab370 (diff)
Use proper options to suppress validation
Diffstat (limited to 'dist')
-rw-r--r--dist/examples/cxx/hybrid/binary/cdr/makefile6
-rw-r--r--dist/examples/cxx/hybrid/binary/cdr/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/binary/custom/makefile6
-rw-r--r--dist/examples/cxx/hybrid/binary/custom/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/binary/xdr/makefile6
-rw-r--r--dist/examples/cxx/hybrid/binary/xdr/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/compositors/makefile4
-rw-r--r--dist/examples/cxx/hybrid/compositors/nmakefile4
-rw-r--r--dist/examples/cxx/hybrid/custom/wildcard/makefile6
-rw-r--r--dist/examples/cxx/hybrid/custom/wildcard/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/filter/makefile6
-rw-r--r--dist/examples/cxx/hybrid/filter/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/hello/makefile2
-rw-r--r--dist/examples/cxx/hybrid/hello/nmakefile2
-rw-r--r--dist/examples/cxx/hybrid/library/makefile6
-rw-r--r--dist/examples/cxx/hybrid/library/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/minimal/makefile6
-rw-r--r--dist/examples/cxx/hybrid/minimal/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/multiroot/makefile2
-rw-r--r--dist/examples/cxx/hybrid/multiroot/nmakefile2
-rw-r--r--dist/examples/cxx/hybrid/polymorphism/makefile6
-rw-r--r--dist/examples/cxx/hybrid/polymorphism/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/polyroot/makefile6
-rw-r--r--dist/examples/cxx/hybrid/polyroot/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/streaming/makefile6
-rw-r--r--dist/examples/cxx/hybrid/streaming/nmakefile6
-rw-r--r--dist/examples/cxx/hybrid/wildcard/makefile6
-rw-r--r--dist/examples/cxx/hybrid/wildcard/nmakefile6
28 files changed, 114 insertions, 34 deletions
diff --git a/dist/examples/cxx/hybrid/binary/cdr/makefile b/dist/examples/cxx/hybrid/binary/cdr/makefile
index 0f2e44d..1453f78 100644
--- a/dist/examples/cxx/hybrid/binary/cdr/makefile
+++ b/dist/examples/cxx/hybrid/binary/cdr/makefile
@@ -17,7 +17,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/binary/cdr/nmakefile b/dist/examples/cxx/hybrid/binary/cdr/nmakefile
index 3ec7fa3..ce9210b 100644
--- a/dist/examples/cxx/hybrid/binary/cdr/nmakefile
+++ b/dist/examples/cxx/hybrid/binary/cdr/nmakefile
@@ -17,7 +17,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/binary/custom/makefile b/dist/examples/cxx/hybrid/binary/custom/makefile
index 63a48bf..9d02861 100644
--- a/dist/examples/cxx/hybrid/binary/custom/makefile
+++ b/dist/examples/cxx/hybrid/binary/custom/makefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/binary/custom/nmakefile b/dist/examples/cxx/hybrid/binary/custom/nmakefile
index 9e20731..00a0964 100644
--- a/dist/examples/cxx/hybrid/binary/custom/nmakefile
+++ b/dist/examples/cxx/hybrid/binary/custom/nmakefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/binary/xdr/makefile b/dist/examples/cxx/hybrid/binary/xdr/makefile
index 2d926ea..257536d 100644
--- a/dist/examples/cxx/hybrid/binary/xdr/makefile
+++ b/dist/examples/cxx/hybrid/binary/xdr/makefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/binary/xdr/nmakefile b/dist/examples/cxx/hybrid/binary/xdr/nmakefile
index 0713b8a..332bbeb 100644
--- a/dist/examples/cxx/hybrid/binary/xdr/nmakefile
+++ b/dist/examples/cxx/hybrid/binary/xdr/nmakefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/compositors/makefile b/dist/examples/cxx/hybrid/compositors/makefile
index 5bdd1d3..dd36b46 100644
--- a/dist/examples/cxx/hybrid/compositors/makefile
+++ b/dist/examples/cxx/hybrid/compositors/makefile
@@ -22,10 +22,6 @@ 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
diff --git a/dist/examples/cxx/hybrid/compositors/nmakefile b/dist/examples/cxx/hybrid/compositors/nmakefile
index 8ac4238..14039ac 100644
--- a/dist/examples/cxx/hybrid/compositors/nmakefile
+++ b/dist/examples/cxx/hybrid/compositors/nmakefile
@@ -22,10 +22,6 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-exceptions
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
-!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
-!endif
-
!if "$(XSDE_REUSE_STYLE)" == "mixin"
EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --reuse-style-mixin
!endif
diff --git a/dist/examples/cxx/hybrid/custom/wildcard/makefile b/dist/examples/cxx/hybrid/custom/wildcard/makefile
index 43b38df..fb85b48 100644
--- a/dist/examples/cxx/hybrid/custom/wildcard/makefile
+++ b/dist/examples/cxx/hybrid/custom/wildcard/makefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/custom/wildcard/nmakefile b/dist/examples/cxx/hybrid/custom/wildcard/nmakefile
index 94992cb..329c993 100644
--- a/dist/examples/cxx/hybrid/custom/wildcard/nmakefile
+++ b/dist/examples/cxx/hybrid/custom/wildcard/nmakefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/filter/makefile b/dist/examples/cxx/hybrid/filter/makefile
index b89536e..586a166 100644
--- a/dist/examples/cxx/hybrid/filter/makefile
+++ b/dist/examples/cxx/hybrid/filter/makefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/filter/nmakefile b/dist/examples/cxx/hybrid/filter/nmakefile
index 4bc4328..6db5615 100644
--- a/dist/examples/cxx/hybrid/filter/nmakefile
+++ b/dist/examples/cxx/hybrid/filter/nmakefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/hello/makefile b/dist/examples/cxx/hybrid/hello/makefile
index 789334f..5499a21 100644
--- a/dist/examples/cxx/hybrid/hello/makefile
+++ b/dist/examples/cxx/hybrid/hello/makefile
@@ -15,7 +15,7 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/hello/nmakefile b/dist/examples/cxx/hybrid/hello/nmakefile
index 6fee8d4..ea80a40 100644
--- a/dist/examples/cxx/hybrid/hello/nmakefile
+++ b/dist/examples/cxx/hybrid/hello/nmakefile
@@ -15,7 +15,7 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/library/makefile b/dist/examples/cxx/hybrid/library/makefile
index 58c99a7..512a0ba 100644
--- a/dist/examples/cxx/hybrid/library/makefile
+++ b/dist/examples/cxx/hybrid/library/makefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/library/nmakefile b/dist/examples/cxx/hybrid/library/nmakefile
index 0d760a0..e1d1a72 100644
--- a/dist/examples/cxx/hybrid/library/nmakefile
+++ b/dist/examples/cxx/hybrid/library/nmakefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/minimal/makefile b/dist/examples/cxx/hybrid/minimal/makefile
index e7f896e..8224235 100644
--- a/dist/examples/cxx/hybrid/minimal/makefile
+++ b/dist/examples/cxx/hybrid/minimal/makefile
@@ -17,7 +17,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/minimal/nmakefile b/dist/examples/cxx/hybrid/minimal/nmakefile
index c76ea37..060be2c 100644
--- a/dist/examples/cxx/hybrid/minimal/nmakefile
+++ b/dist/examples/cxx/hybrid/minimal/nmakefile
@@ -17,7 +17,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/multiroot/makefile b/dist/examples/cxx/hybrid/multiroot/makefile
index cb3f3d0..7329f41 100644
--- a/dist/examples/cxx/hybrid/multiroot/makefile
+++ b/dist/examples/cxx/hybrid/multiroot/makefile
@@ -15,7 +15,7 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/multiroot/nmakefile b/dist/examples/cxx/hybrid/multiroot/nmakefile
index 9a94cd8..d3c4e35 100644
--- a/dist/examples/cxx/hybrid/multiroot/nmakefile
+++ b/dist/examples/cxx/hybrid/multiroot/nmakefile
@@ -15,7 +15,7 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/polymorphism/makefile b/dist/examples/cxx/hybrid/polymorphism/makefile
index 47ad26d..e1f40a1 100644
--- a/dist/examples/cxx/hybrid/polymorphism/makefile
+++ b/dist/examples/cxx/hybrid/polymorphism/makefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/polymorphism/nmakefile b/dist/examples/cxx/hybrid/polymorphism/nmakefile
index 7ff1476..bd86945 100644
--- a/dist/examples/cxx/hybrid/polymorphism/nmakefile
+++ b/dist/examples/cxx/hybrid/polymorphism/nmakefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/polyroot/makefile b/dist/examples/cxx/hybrid/polyroot/makefile
index 5e7d513..a422aa3 100644
--- a/dist/examples/cxx/hybrid/polyroot/makefile
+++ b/dist/examples/cxx/hybrid/polyroot/makefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/polyroot/nmakefile b/dist/examples/cxx/hybrid/polyroot/nmakefile
index 20453eb..d713db0 100644
--- a/dist/examples/cxx/hybrid/polyroot/nmakefile
+++ b/dist/examples/cxx/hybrid/polyroot/nmakefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/streaming/makefile b/dist/examples/cxx/hybrid/streaming/makefile
index a607ff1..6c97f8b 100644
--- a/dist/examples/cxx/hybrid/streaming/makefile
+++ b/dist/examples/cxx/hybrid/streaming/makefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/streaming/nmakefile b/dist/examples/cxx/hybrid/streaming/nmakefile
index 25e6e1b..76a0c14 100644
--- a/dist/examples/cxx/hybrid/streaming/nmakefile
+++ b/dist/examples/cxx/hybrid/streaming/nmakefile
@@ -15,7 +15,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"
diff --git a/dist/examples/cxx/hybrid/wildcard/makefile b/dist/examples/cxx/hybrid/wildcard/makefile
index dda8cfc..0c8fd1f 100644
--- a/dist/examples/cxx/hybrid/wildcard/makefile
+++ b/dist/examples/cxx/hybrid/wildcard/makefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS += --no-long-long
endif
ifeq ($(XSDE_PARSER_VALIDATION),n)
-EXTRA_XSDFLAGS += --suppress-validation
+EXTRA_XSDFLAGS += --suppress-parser-val
+endif
+
+ifeq ($(XSDE_SERIALIZER_VALIDATION),n)
+EXTRA_XSDFLAGS += --suppress-serializer-val
endif
ifeq ($(XSDE_REUSE_STYLE),mixin)
diff --git a/dist/examples/cxx/hybrid/wildcard/nmakefile b/dist/examples/cxx/hybrid/wildcard/nmakefile
index 689ac2f..d4d8d06 100644
--- a/dist/examples/cxx/hybrid/wildcard/nmakefile
+++ b/dist/examples/cxx/hybrid/wildcard/nmakefile
@@ -11,7 +11,11 @@ EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --no-long-long
!endif
!if "$(XSDE_PARSER_VALIDATION)" == "n"
-EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-validation
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-parser-val
+!endif
+
+!if "$(XSDE_SERIALIZER_VALIDATION)" == "n"
+EXTRA_XSDFLAGS = $(EXTRA_XSDFLAGS) --suppress-serializer-val
!endif
!if "$(XSDE_REUSE_STYLE)" == "mixin"