Make WinBoard makefiles use parser.c in XBoard directory
authorH.G. Muller <h.g.muller@hccnet.nl>
Sat, 9 Jan 2010 10:54:20 +0000 (11:54 +0100)
committerArun Persaud <arun@nubati.net>
Wed, 13 Jan 2010 03:29:09 +0000 (19:29 -0800)
winboard/makefile.gcc
winboard/makefile.ms

index 27cebc0..6bb84c8 100644 (file)
@@ -77,8 +77,8 @@ wbres.o: $(PROJ).rc $(PROJ).h resource.h config.h
 # 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
+../parser.c: ../parser.l\r
+       $(FLEX) -o../parser.c -L ../parser.l\r
 \r
 \r
 $(PROJ).exe: $(OBJS) $(PROJ).hlp\r
@@ -94,7 +94,7 @@ backend.o: ../backend.c config.h ../common.h ../frontend.h ../backend.h \
        ../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
index 4a26ca6..ca127b5 100644 (file)
@@ -87,8 +87,8 @@ $(PROJ).hlp : $(PROJ).rtf
 $(PROJ).res: $(PROJ).rc $(PROJ).h resource.h config.h\r
     $(RC) $(CF) -r -fo $(PROJ).res $(PROJ).rc\r
 \r
-parser.c: ../parser.l\r
-    $(FLEX) -oparser.c -L ../parser.l\r
+../parser.c: ../parser.l\r
+    $(FLEX) -o../parser.c -L ../parser.l\r
 \r
 winboard.obj: winboard.c config.h winboard.h ../common.h ../frontend.h \\r
         ../backend.h ../moves.h defaults.h resource.h wclipbrd.h \\r
@@ -99,7 +99,7 @@ backend.obj: ../backend.c config.h ../common.h ../frontend.h ../backend.h \
         ../parser.h ../moves.h ../zippy.h ../backendz.h ../gettext.h ../lists.h\r
         $(CC) $(CFLAGS) ../backend.c\r
 \r
-parser.obj: parser.c config.h ../common.h ../backend.h ../parser.h \\r
+parser.obj: ../parser.c config.h ../common.h ../backend.h ../parser.h \\r
         ../frontend.h ../moves.h ../lists.h\r
         $(CC) $(CFLAGS) parser.c\r
 \r