Upgraded ccdv-win32.c and the Makefiles so that they are fully functional under MSYS.

SVN r286 (trunk)
This commit is contained in:
Randy Heit 2006-08-11 03:07:32 +00:00
commit 55e299e4b3
14 changed files with 330 additions and 118 deletions

View file

@ -63,10 +63,17 @@ minigzip: minigzip.o $(STATICLIB)
.PHONY: clean
clean:
ifeq (msys,$(OSTYPE))
rm -f $(STATICLIB)
rm -f *.o
rm -f *.exe
rm -f foo.gz
else
-del /q /f $(STATICLIB) 2>nul
-del /q /f *.o 2>nul
-del /q /f *.exe 2>nul
-del /q /f foo.gz 2>nul
endif
adler32.o: zlib.h zconf.h
compress.o: zlib.h zconf.h