diff options
Diffstat (limited to 'xsd/dist/examples/cxx/tree/multiroot/makefile')
-rw-r--r-- | xsd/dist/examples/cxx/tree/multiroot/makefile | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/xsd/dist/examples/cxx/tree/multiroot/makefile b/xsd/dist/examples/cxx/tree/multiroot/makefile deleted file mode 100644 index d94da7f..0000000 --- a/xsd/dist/examples/cxx/tree/multiroot/makefile +++ /dev/null @@ -1,33 +0,0 @@ -root := ../../.. - -include $(root)/build/cxx/rules.make -include $(root)/build/xsd/tree-rules.make - -override XSDFLAGS += --root-element-all - - -# Build. -# -driver: driver.o dom-parse.o protocol.o - -protocol.o: protocol.cxx protocol.hxx -dom-parse.o: dom-parse.cxx dom-parse.hxx -driver.o: driver.cxx dom-parse.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 driver.o driver |