From 2615896faa646e5830abf2c269150e1165c66515 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Fri, 18 Dec 2020 18:48:46 +0300 Subject: Switch to build2 --- dist/examples/cxx/tree/custom/comments/makefile | 49 ------------------------- 1 file changed, 49 deletions(-) delete mode 100644 dist/examples/cxx/tree/custom/comments/makefile (limited to 'dist/examples/cxx/tree/custom/comments/makefile') diff --git a/dist/examples/cxx/tree/custom/comments/makefile b/dist/examples/cxx/tree/custom/comments/makefile deleted file mode 100644 index 442ab86..0000000 --- a/dist/examples/cxx/tree/custom/comments/makefile +++ /dev/null @@ -1,49 +0,0 @@ -root := ../../../.. - -include $(root)/build/cxx/rules.make -include $(root)/build/xsd/tree-rules.make - - -override XSDFLAGS += --generate-inline --generate-serialization \ ---extern-xml-schema xml-schema.xsd - - -# Build. -# -driver: driver.o people.o xml-schema-custom.o dom-parse.o - -driver.o: driver.cxx dom-parse.hxx people.ixx people.hxx xml-schema.hxx xml-schema-custom.hxx -people.o: people.cxx people.ixx people.hxx xml-schema.hxx xml-schema-custom.hxx -xml-schema-custom.o: xml-schema.hxx xml-schema-custom.hxx -dom-parse.o: dom-parse.cxx dom-parse.hxx - -people.cxx people.ixx people.hxx: people.xsd - -# Generate header for XML Schema namespace. -# -XML_SCHEMA_XSDFLAGS := --generate-xml-schema --generate-serialization \ ---hxx-epilogue '\#include "xml-schema-custom.hxx"' - -ifneq ($(shell uname -o 2>&1),Msys) -XML_SCHEMA_XSDFLAGS += --custom-type anyType=/type_base -else -# Prevent MSYS from converting / to Windows path. -XML_SCHEMA_XSDFLAGS += --custom-type anyType=//type_base -endif - -xml-schema.hxx: - $(XSD) cxx-tree $(XML_SCHEMA_XSDFLAGS) xml-schema.xsd - - -# Test -# -.PHONY: test -test: driver people.xml - ./driver people.xml - - -# Clean. -# -.PHONY: clean -clean: - rm -f xml-schema.hxx xml-schema-custom.o people.o people.?xx dom-parse.o driver.o driver -- cgit v1.1