From 45acf3694bc4d111fc27310e64a3f9b2866f4822 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 21 Oct 2009 07:36:31 +0200 Subject: Add gen and cleanobj targets to nmakefiles in examples --- dist/examples/cxx/serializer/hello/nmakefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'dist/examples/cxx/serializer/hello/nmakefile') diff --git a/dist/examples/cxx/serializer/hello/nmakefile b/dist/examples/cxx/serializer/hello/nmakefile index f6b83ce..f3b3d2c 100644 --- a/dist/examples/cxx/serializer/hello/nmakefile +++ b/dist/examples/cxx/serializer/hello/nmakefile @@ -34,6 +34,12 @@ hello-sskel.obj: hello-sskel.cxx hello-sskel.hxx hello-sskel.cxx hello-sskel.hxx: hello.xsd $(root)\bin\xsde.exe cxx-serializer $(XSDFLAGS) $(EXTRA_XSDFLAGS) hello.xsd + +# Generate. +# +gen: hello-sskel.hxx + + # Test. # test: driver.exe @@ -42,6 +48,8 @@ test: driver.exe # Clean. # -clean: - -del hello-sskel.?xx hello-sskel.obj driver.obj driver.exe +cleanobj: + -del hello-sskel.obj driver.obj driver.exe +clean: cleanobj + -del hello-sskel.?xx -- cgit v1.1