# HG changeset patch # User bsmith@81767d24-ef19-dc11-ae90-00e081727c95 # Date 1311977485 0 # Node ID a049f447999ca787c839501ec3a3759855190a9b # Parent 824849a7768af152f3aa0396fc9bbaa3f14fb286 Updated makefiles to 2.1 on Windows and OS/2 for packaging. Also added automatic win32/win64 naming for the zip files. I really need to look into a unified version location, right now I have to change the version in 15 places for each release. diff -r 824849a7768a -r a049f447999c makefile.emx --- a/makefile.emx Fri Jul 29 21:57:03 2011 +0000 +++ b/makefile.emx Fri Jul 29 22:11:25 2011 +0000 @@ -7,8 +7,8 @@ RC = rc MAKE = make COMPRESS = lxlite -VER = 11 -VERDOT = 2.0 +VER = 21 +VERDOT = 2.1 DEFS = LIBS = diff -r 824849a7768a -r a049f447999c makefile.vc --- a/makefile.vc Fri Jul 29 21:57:03 2011 +0000 +++ b/makefile.vc Fri Jul 29 22:11:25 2011 +0000 @@ -1,8 +1,8 @@ # # Visual C Makefile for Dynamic Windows # -VER = 20 -VERDOT = 2.0 +VER = 21 +VERDOT = 2.1 # # Setup the source and destination directories @@ -31,8 +31,10 @@ !if "$(TARGET_CPU)" == "x86" PLATFORM_DEF = -DWIN32 +PLATFORM_NAME = win32 !else PLATFORM_DEF = -DWIN64 +PLATFORM_NAME = win64 !endif # @@ -130,4 +132,4 @@ zip: dw.dll copy win\readme-win.txt . - zip dwindows-win32-$(VERDOT).zip readme-win.txt readme dw.dll dwcompat.dll dw.lib dwcompat.lib dw.h + zip dwindows-$(PLATFORM_NAME)-$(VERDOT).zip readme-win.txt readme dw.dll dwcompat.dll dw.lib dwcompat.lib dw.h