[Eolfix-cvs] eolfix djgpp.mak,1.3,1.4 mingw.mak,1.3,1.4
Brought to you by:
rossta
|
From: Ross S. <ro...@us...> - 2006-01-10 21:59:05
|
Update of /cvsroot/eolfix/eolfix In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16598 Modified Files: djgpp.mak mingw.mak Log Message: make file fixes Index: djgpp.mak =================================================================== RCS file: /cvsroot/eolfix/eolfix/djgpp.mak,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- djgpp.mak 6 Jan 2006 20:53:55 -0000 1.3 +++ djgpp.mak 10 Jan 2006 21:58:56 -0000 1.4 @@ -5,7 +5,7 @@ ifneq ('$(DEBUG)', '') CFLAGS+=-O0 -g -D_DEBUG else -CFLAGS+=-02 -DNDEBUG +CFLAGS+=-O2 -DNDEBUG endif OBJS=eolfix.o fnmatch.o getopt.o Index: mingw.mak =================================================================== RCS file: /cvsroot/eolfix/eolfix/mingw.mak,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- mingw.mak 6 Jan 2006 20:53:55 -0000 1.3 +++ mingw.mak 10 Jan 2006 21:58:56 -0000 1.4 @@ -5,7 +5,7 @@ ifneq ('$(DEBUG)', '') CFLAGS+=-O0 -g -D_DEBUG else -CFLAGS+=-02 -DNDEBUG +CFLAGS+=-O2 -DNDEBUG endif OBJS=eolfix.o fnmatch.o # getopt.o |