tWin32 installer tidy-ups - vaccinewars - be a doctor and try to vaccinate the world
HTML git clone git://src.adamsgaard.dk/vaccinewars
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit da4d9b8e32c32e7aab338e77448f8084da14414a
DIR parent 1f10c2b9fdde2deece5527fe6d0131a3a2a1c6df
HTML Author: Ben Webb <ben@salilab.org>
Date: Sun, 7 Oct 2001 23:20:56 +0000
Win32 installer tidy-ups
Diffstat:
M win32/Makefile | 5 +++++
M win32/util.c | 1 -
2 files changed, 5 insertions(+), 1 deletion(-)
---
DIR diff --git a/win32/Makefile b/win32/Makefile
t@@ -1,5 +1,10 @@
all: setup makeinstall uninstall
+clean:
+ /bin/rm -f *.o *.res uninstall.exe setup.exe makeinstall.exe core *~
+ /bin/rm -f installfiles.gz manifest
+ touch installfiles.gz manifest
+
setup: setup.o util.o guifunc.o setup.res
gcc -Wall -mno-cygwin -mwindows -o setup setup.o util.o guifunc.o setup.res zlib/libz.a -lcomctl32 -lole32 -luuid
strip setup.exe
DIR diff --git a/win32/util.c b/win32/util.c
t@@ -31,7 +31,6 @@ void bfree(void *pt) {
}
void *brealloc(void *pt,UINT numbytes) {
- HLOCAL localpt;
UINT numcp;
void *newpt;
if (!pt && numbytes) return bmalloc(numbytes);