Fix multi-leg promotions
[xboard.git] / winboard / makefile.gcc
index 4c73c8d..77fc0b9 100644 (file)
@@ -6,7 +6,7 @@ PROJ=winboard
 \r
 OBJS=backend.o book.o gamelist.o lists.o moves.o pgntags.o uci.o zippy.o\\r
  parser.o wbres.o wclipbrd.o wedittags.o wengineoutput.o wevalgraph.o\\r
- wgamelist.o whistory.o winboard.o wlayout.o woptions.o wsnap.o\\r
+ wgamelist.o whistory.o history.o winboard.o wlayout.o woptions.o wsnap.o\\r
  wsockerr.o help.o wsettings.o wchat.o engineoutput.o evalgraph.o\r
 \r
 \r
@@ -28,7 +28,7 @@ USE_MINGW=1
 \r
 # set up for cygwin or not\r
 ifeq ($(USE_MINGW),1)\r
-CFCYG = -mno-cygwin\r
+CFCYG = -mno-cygwin -DUSE_I64\r
 LFCYG = -mno-cygwin -lmsvcrt\r
 endif\r
 \r
@@ -63,38 +63,28 @@ clean:
 \r
 # Update the help file if necessary\r
 $(PROJ).hlp : $(PROJ).rtf\r
-       $(HC) $(PROJ).hpj\r
-       @cat $(PROJ).err\r
-       @mv $(PROJ).hlp tmp.hlp\r
-       @mv tmp.hlp $(PROJ).hlp # these moves to get the case right\r
+       $(HC) $(PROJ).hpj && @cat $(PROJ).err && @mv $(PROJ).hlp tmp.hlp && @mv tmp.hlp $(PROJ).hlp || true # these moves to get the case right\r
 \r
 \r
 # Update the resource if necessary\r
-wbres.o: $(PROJ).rc $(PROJ).h resource.h\r
+wbres.o: $(PROJ).rc $(PROJ).h resource.h config.h\r
        windres $(DEFS) --use-temp-file --include-dir .. $< -O coff -o $@\r
 \r
 \r
-# note: cygwin flex needs m4 package.  cygwin-setup forgets this dependency\r
-# note2: use mingw flex instead... although I got cygwin's flex working (with m4),\r
-#        it didn't produce a useable parser.c (1000's of errors)\r
-parser.c: ../parser.l\r
-       $(FLEX) -oparser.c -L ../parser.l\r
-\r
-\r
 $(PROJ).exe: $(OBJS) $(PROJ).hlp\r
        $(CC) $(guiflags) $(OBJS) $(LFLAGS) -o $(PROJ).exe\r
 \r
 \r
 winboard.o: winboard.c config.h winboard.h ../common.h ../frontend.h ../backend.h \\r
        ../moves.h defaults.h resource.h wclipbrd.h \\r
-       wsockerr.h woptions.h wsnap.h ../lists.h help.h\r
+       wsockerr.h woptions.h wsnap.h ../lists.h help.h ../args.h\r
        $(call compile, $<)\r
 \r
 backend.o: ../backend.c config.h ../common.h ../frontend.h ../backend.h \\r
        ../parser.h ../moves.h ../zippy.h ../backendz.h ../gettext.h ../lists.h\r
        $(call compile, $<)\r
 \r
-parser.o: parser.c config.h ../common.h ../backend.h ../parser.h \\r
+parser.o: ../parser.c config.h ../common.h ../backend.h ../parser.h \\r
        ../frontend.h ../moves.h ../lists.h\r
        $(call compile, $<)\r
 \r
@@ -117,7 +107,7 @@ wedittags.o: wedittags.c config.h ../common.h winboard.h resource.h ../frontend.
        ../backend.h ../lists.h\r
        $(call compile, $<)\r
 \r
-wgamelist.o: wgamelist.c config.h. ../common.h winboard.h resource.h ../frontend.h \\r
+wgamelist.o: wgamelist.c config.h ../common.h winboard.h resource.h ../frontend.h \\r
        ../backend.h ../lists.h\r
        $(call compile, $<)\r
 \r
@@ -137,6 +127,10 @@ whistory.o: whistory.c config.h ../common.h ../frontend.h ../backend.h \
        ../lists.h winboard.h resource.h wsnap.h\r
        $(call compile, $<)\r
 \r
+history.o: ../history.c config.h ../common.h ../frontend.h ../backend.h \\r
+       ../lists.h\r
+       $(call compile, $<)\r
+\r
 wevalgraph.o: wevalgraph.c ../evalgraph.h config.h ../common.h ../frontend.h \\r
        ../backend.h ../lists.h winboard.h resource.h wsnap.h\r
        $(call compile, $<)\r