# HG changeset patch # User mhessling@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1239499163 0 # Node ID cd1f9f0bd7e1eaec20c4ba69f4e0b1bc1d4617e4 # Parent 06be879f51375251df1be4f19fe3be2c0ce6431f Support for building zip file on Win32 diff -r 06be879f5137 -r cd1f9f0bd7e1 makefile.vc --- a/makefile.vc Sun Apr 12 01:12:04 2009 +0000 +++ b/makefile.vc Sun Apr 12 01:19:23 2009 +0000 @@ -1,6 +1,9 @@ # # Get our source directory # +VER = 11 +VERDOT = 1.1 + !if "$(DWINDOWS_SRCDIR)" == "" SRCDIR=. !else @@ -98,3 +101,7 @@ dwtest.exe: dwtest.obj winmain.obj $(LINK) $(LINKFLAGS) /out:dwtest.exe dwtest.obj winmain.obj /subsystem:windows $(FXLIBDIR)\dwcompat.lib $(FXLIBDIR)\dw.lib $(LIBS) + +zip: dw.dll + copy win\readme-win.txt . + zip dwindows-win32-$(VERDOT).zip readme-win.txt dw.dll dwcompat.dll dw.lib dwcompat.lib dw.h diff -r 06be879f5137 -r cd1f9f0bd7e1 win/readme-win.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/win/readme-win.txt Sun Apr 12 01:19:23 2009 +0000 @@ -0,0 +1,10 @@ +This package contains Dynamic Windows (dwindows) v 1.1 for Windows (32bit). + +It contains: + +dw.dll - main dwindows DLL +dwcompat.dll - compatibility DLL (optional) +dw.h - header file +dw.lib - import library for functions in dw.dll +dwcompat.lib - import library for functions in dwcompat.dll +readme-win.txt - this file