[Eolfix-cvs] eolfix djgpp.mak,1.2,1.3 makedist-win32.sh,1.2,1.3 mingw.mak,1.2,1.3
Brought to you by:
rossta
|
From: Ross S. <ro...@us...> - 2006-01-06 20:54:04
|
Update of /cvsroot/eolfix/eolfix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19244 Modified Files: djgpp.mak makedist-win32.sh mingw.mak Log Message: Corrected gcc params for djgpp and mingw Index: makedist-win32.sh =================================================================== RCS file: /cvsroot/eolfix/eolfix/makedist-win32.sh,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- makedist-win32.sh 4 Jan 2006 11:44:57 -0000 1.2 +++ makedist-win32.sh 6 Jan 2006 20:53:55 -0000 1.3 @@ -2,7 +2,9 @@ # $Id$ -VERSION=0.1.0 +# Cygwin shell script to create Win32 binary & source distributions + +VERSION=`cat version` FILES="\ AUTHORS \ @@ -27,11 +29,20 @@ *.h \ *.mak \ makedist-win32.sh \ +-x config.h \ " +ZIP="zip -j -9" + +rm -f \ +eolfix-${VERSION}-win32.zip \ +eolfix-${VERSION}-src-win32.zip + # upx Release/eolfix.exe -zip -j -9 eolfix-${VERSION}-win32.zip ${FILES} +${ZIP} eolfix-${VERSION}-win32.zip ${FILES} -rm -f config.h +# test -f config.h && mv -f config.h config.h.sav -zip -j -9 eolfix-${VERSION}-src-win32.zip ${SRC_FILES} +${ZIP} eolfix-${VERSION}-src-win32.zip ${SRC_FILES} + +# test -f config.h.sav && mv -f config.h.sav config.h Index: djgpp.mak =================================================================== RCS file: /cvsroot/eolfix/eolfix/djgpp.mak,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- djgpp.mak 4 Jan 2006 11:44:57 -0000 1.2 +++ djgpp.mak 6 Jan 2006 20:53:55 -0000 1.3 @@ -3,9 +3,9 @@ # $Id$ ifneq ('$(DEBUG)', '') -CFLAGS+=-D_DEBUG +CFLAGS+=-O0 -g -D_DEBUG else -CFLAGS+=-DNDEBUG +CFLAGS+=-02 -DNDEBUG endif OBJS=eolfix.o fnmatch.o getopt.o Index: mingw.mak =================================================================== RCS file: /cvsroot/eolfix/eolfix/mingw.mak,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- mingw.mak 4 Jan 2006 11:44:57 -0000 1.2 +++ mingw.mak 6 Jan 2006 20:53:55 -0000 1.3 @@ -3,9 +3,9 @@ # $Id$ ifneq ('$(DEBUG)', '') -CFLAGS+=-D_DEBUG +CFLAGS+=-O0 -g -D_DEBUG else -CFLAGS+=-DNDEBUG +CFLAGS+=-02 -DNDEBUG endif OBJS=eolfix.o fnmatch.o # getopt.o |