summaryrefslogtreecommitdiff
path: root/dist/examples/cxx/tree/order/mixed/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'dist/examples/cxx/tree/order/mixed/makefile')
-rw-r--r--dist/examples/cxx/tree/order/mixed/makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/dist/examples/cxx/tree/order/mixed/makefile b/dist/examples/cxx/tree/order/mixed/makefile
deleted file mode 100644
index b7929d9..0000000
--- a/dist/examples/cxx/tree/order/mixed/makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-root := ../../../..
-
-include $(root)/build/cxx/rules.make
-include $(root)/build/xsd/tree-rules.make
-
-
-override XSDFLAGS += --generate-serialization --ordered-type-mixed
-
-
-# Build.
-#
-driver: driver.o text.o
-
-text.o: text.cxx text.hxx
-driver.o: driver.cxx text.hxx
-
-text.cxx text.hxx: text.xsd
-
-
-# Test
-#
-.PHONY: test
-test: driver text.xml
- ./driver text.xml
-
-
-# Clean.
-#
-.PHONY: clean
-clean:
- rm -f text.o text.?xx driver.o driver
-