aboutsummaryrefslogtreecommitdiff
path: root/dist/examples/cxx/hybrid/wildcard/nmakefile
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2009-10-21 07:36:31 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2009-10-21 07:36:31 +0200
commit45acf3694bc4d111fc27310e64a3f9b2866f4822 (patch)
tree7b56c91c896c77c71608de2e52c8d4d93872d0bc /dist/examples/cxx/hybrid/wildcard/nmakefile
parent8302018362ba1bc362a72ad3f6744ce6262b33af (diff)
Add gen and cleanobj targets to nmakefiles in examples
Diffstat (limited to 'dist/examples/cxx/hybrid/wildcard/nmakefile')
-rw-r--r--dist/examples/cxx/hybrid/wildcard/nmakefile18
1 files changed, 14 insertions, 4 deletions
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