Be slightly more forgiving about the nature of SVN_REV; bob will be
[sgt/putty] / Buildscr
index 90b66aa..6c01b2e 100644 (file)
--- a/Buildscr
+++ b/Buildscr
@@ -2,9 +2,10 @@
 # Build script to construct a full distribution directory of PuTTY.
 
 # Set up the arguments for the main make command.
-set Makeargs VER="-DSVN_REV=$(revision)"
-ifneq "$(RELEASE)" "" set Makeargs $(Makeargs) VER="-DRELEASE=$(RELEASE)"
-ifneq "$(date)" "" set Makeargs $(Makeargs) VER="-DSNAPSHOT=$(date)"
+set Makever -DSVN_REV=$(revision)
+ifneq "$(RELEASE)" "" set Makever $(Makever) -DRELEASE=$(RELEASE)
+ifneq "$(date)" "" set Makever $(Makever) -DSNAPSHOT=$(date)
+set Makeargs VER="$(Makever)"
 ifneq "$(XFLAGS)" "" set Makeargs $(makeargs) XFLAGS="$(XFLAGS)"
 ifneq "$(MAKEARGS)" "" set Makeargs $(makeargs) $(MAKEARGS)
 
@@ -46,13 +47,14 @@ in putty/windows do perl -i~ -pe 'BEGIN{$$a=shift@ARGV;$$a=~s/M//;}s/^(VersionIn
 
 delegate windows
   # FIXME: Cygwin alternative?
-  in putty/windows do cmd /c 'vcvars32 & nmake -f Makefile.vc $(Makeargs)'
+  in putty/windows do cmd /c vcvars32 \& nmake -f Makefile.vc $(Makeargs)
   # Ignore exit code from hhc, in favour of seeing whether the .chm
   # file was created. (Yuck; but hhc appears to return non-zero
   # exit codes on whim.)
   in putty/doc do hhc putty.hhp; test -f putty.chm
   in putty/windows do iscc putty.iss
   return putty/windows/*.exe
+  return putty/windows/*.map
   return putty/doc/putty.chm
   return putty/windows/Output/setup.exe
 enddelegate
@@ -62,6 +64,7 @@ in putty/windows do zip -k -j putty.zip `ls *.exe | grep -v puttytel` ../doc/put
 in putty/doc do zip puttydoc.zip *.html
 
 deliver putty/windows/*.exe x86/$@
+deliver putty/windows/*.map maps-x86/$@
 deliver putty/windows/putty.zip x86/$@
 deliver putty/windows/Output/setup.exe x86/putty-$(Iversion)-installer.exe
 deliver putty/doc/puttydoc.zip $@