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