From 57fe13de5c01bc8e5bbeb39acd131c9329245261 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 4 Jul 2014 11:15:44 +0200 Subject: Update streaming example with new implementation --- dist/examples/cxx/tree/streaming/makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'dist/examples/cxx/tree/streaming/makefile') diff --git a/dist/examples/cxx/tree/streaming/makefile b/dist/examples/cxx/tree/streaming/makefile index ed32b83..4c7acd2 100644 --- a/dist/examples/cxx/tree/streaming/makefile +++ b/dist/examples/cxx/tree/streaming/makefile @@ -9,12 +9,13 @@ override XSDFLAGS += --generate-serialization # Build. # -driver: driver.o parser.o serializer.o position.o +driver: driver.o parser.o serializer.o grammar-input-stream.o position.o position.o: position.cxx position.hxx driver.o: driver.cxx position.hxx parser.hxx serializer.hxx parser.o: parser.cxx parser.hxx serializer.o: serializer.cxx serializer.hxx +grammar-input-stream.o: grammar-input-stream.cxx grammar-input-stream.hxx position.cxx position.hxx: position.xsd @@ -30,4 +31,4 @@ test: driver position.xml # .PHONY: clean clean: - rm -f position.o position.?xx parser.o serializer.o driver.o driver out.xml + rm -f position.o position.?xx parser.o serializer.o grammar-input-stream.o driver.o driver out.xml -- cgit v1.1