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/hybrid/wildcard/nmakefile | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) (limited to 'dist/examples/cxx/hybrid/wildcard/nmakefile') diff --git a/dist/examples/cxx/hybrid/wildcard/nmakefile b/dist/examples/cxx/hybrid/wildcard/nmakefile index 83e3ba0..689ac2f 100644 --- a/dist/examples/cxx/hybrid/wildcard/nmakefile +++ b/dist/examples/cxx/hybrid/wildcard/nmakefile @@ -46,15 +46,25 @@ email-sskel.cxx email-sskel.hxx email-simpl.cxx email-simpl.hxx \ --custom-parser envelope=envelope_base_pimpl/envelope-pimpl.hxx \ --custom-serializer envelope=envelope_base_simpl/envelope-simpl.hxx email.xsd + +# Generate. +# +gen: email.hxx + + # Test. # test: driver.exe email.xml .\driver.exe email.xml + # Clean. # -clean: +cleanobj: + -del envelope-pimpl.obj envelope-simpl.obj email-pimpl.obj \ +email-pskel.obj email-simpl.obj email-sskel.obj body.obj email.obj \ +driver.obj driver.exe + +clean: cleanobj -del email-pimpl.?xx email-pskel.?xx email-simpl.?xx \ -email-sskel.?xx email.?xx envelope-pimpl.obj envelope-simpl.obj \ -email-pimpl.obj email-pskel.obj email-simpl.obj email-sskel.obj \ -body.obj email.obj driver.obj driver.exe +email-sskel.?xx email.?xx -- cgit v1.1