summaryrefslogtreecommitdiff
path: root/xsd/dist/examples/cxx/tree/messaging/makefile
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:46 +0100
committerJörg Frings-Fürst <debian@jff.email>2024-03-06 10:24:46 +0100
commit372a0e99c2f61543d9e14d9933b59d9d1f4cb26e (patch)
treebbadf39aed0610c8f8f7b41fefff47773b8ac205 /xsd/dist/examples/cxx/tree/messaging/makefile
parent23d41842168ac1a1580111b9c5c73500ceee3d57 (diff)
parent4538829ab86b5a1cd4e845e7eab165029c9d6d46 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'xsd/dist/examples/cxx/tree/messaging/makefile')
-rw-r--r--xsd/dist/examples/cxx/tree/messaging/makefile35
1 files changed, 0 insertions, 35 deletions
diff --git a/xsd/dist/examples/cxx/tree/messaging/makefile b/xsd/dist/examples/cxx/tree/messaging/makefile
deleted file mode 100644
index 0557a7c..0000000
--- a/xsd/dist/examples/cxx/tree/messaging/makefile
+++ /dev/null
@@ -1,35 +0,0 @@
-root := ../../..
-
-include $(root)/build/cxx/rules.make
-include $(root)/build/xsd/tree-rules.make
-
-override XSDFLAGS += --root-element-all --generate-element-type \
---generate-element-map --generate-serialization
-
-
-# Build.
-#
-driver: driver.o dom-parse.o dom-serialize.o protocol.o
-
-protocol.o: protocol.cxx protocol.hxx
-dom-parse.o: dom-parse.cxx dom-parse.hxx
-dom-serialize.o: dom-serialize.cxx dom-serialize.hxx
-driver.o: driver.cxx dom-parse.hxx dom-serialize.hxx protocol.hxx
-
-protocol.cxx protocol.hxx: protocol.xsd
-
-
-# Test
-#
-.PHONY: test
-test: driver balance.xml withdraw.xml deposit.xml
- ./driver balance.xml
- ./driver withdraw.xml
- ./driver deposit.xml
-
-
-# Clean.
-#
-.PHONY: clean
-clean:
- rm -f protocol.o protocol.?xx dom-parse.o dom-serialize.o driver.o driver