*** ../winboard/cygwin.mak Mon Dec 3 02:09:44 2001 --- cygwin.mak Sat Mar 2 07:01:34 2002 *************** *** 8,15 **** # Uncomment both lines to turn on debugging symbols ####### ! cdebug= -g ! linkdebug= -g ####################################################### proj=winboard --- 8,15 ---- # Uncomment both lines to turn on debugging symbols ####### ! #cdebug= -g ! #linkdebug= -g ####################################################### proj=winboard *************** *** 21,27 **** # 2 Dec 2001 - the mingw libraries that I have right now # (not updated for a few months) have bugs in fileno and stat # that prevent WinBoard from working. ! #cygwin= -mno-cygwin CFLAGS= $(cdebug) CVARS= -I. -mwindows $(cygwin) --- 21,27 ---- # 2 Dec 2001 - the mingw libraries that I have right now # (not updated for a few months) have bugs in fileno and stat # that prevent WinBoard from working. ! cygwin= -mno-cygwin CFLAGS= $(cdebug) CVARS= -I. -mwindows $(cygwin) *************** *** 47,57 **** flex -L parser.l cp lex.yy.c parser.c ! $(proj).exe: $(allobj) $(proj).hlp $(proj).rc ! $(WCC) $(guiflags) $(allobj) \ ! -lwsock32 -lcomctl32 -lwinmm -lkernel32 \ ! -ladvapi32 -luser32 -lgdi32 -lcomdlg32 -lwinspool \ ! -o $(proj).exe clean: rm *.o parser.c --- 47,60 ---- flex -L parser.l cp lex.yy.c parser.c ! LIBS = -lwsock32 -lcomctl32 -lwinmm -lkernel32 -ladvapi32 -luser32 -lgdi32 -lcomdlg32 -lwinspool ! ! $(proj).exe: ${allobj} $(proj).hlp $(proj).rc ! $(WCC) $(guiflags) $(allobj) $(LIBS) -o $(proj).exe clean: rm *.o parser.c + + install: $(proj).exe + strip winboard.exe + cp winboard.exe "/cygdrive/c/Program Files/Winboard/winboard.exe"