X-Git-Url: http://winboard.nl/cgi-bin?a=blobdiff_plain;f=gnushogi%2FMakefile.in;h=176454c3af12dea931d669a3990553fe2b9a3519;hb=1907f35d3370f971df16e40dec4135110386a84c;hp=4fa0c365f3d30ec101f968d1d6247f56e2aec687;hpb=73dc3a91efd58da0b1fcce6c48a12361be71cd03;p=gnushogi.git diff --git a/gnushogi/Makefile.in b/gnushogi/Makefile.in index 4fa0c36..176454c 100644 --- a/gnushogi/Makefile.in +++ b/gnushogi/Makefile.in @@ -3,6 +3,7 @@ # # Copyright (c) 1993, 1994 Matthias Mutz # Copyright (c) 1998, 1999 Michael Vanier and the Free Software Foundation +# Copyright (c) 2008, 2013, 2014 Yann Dirson and the Free Software Foundation # # GNU Shogi is based on GNU Chess # Copyright (c) 1992 Free Software Foundation @@ -32,7 +33,6 @@ # SHELL = /bin/sh -VERS = 1.3 INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ @@ -73,7 +73,7 @@ LCURSES = @LIBCURSES@ CC = @CC@ CWARNINGS = @WARNINGS@ CEXTRAFLAGS = @CEXTRAFLAGS@ -CFLAGS = @CFLAGS@ $(HASH) $(CEXTRAFLAGS) $(CWARNINGS) -I$(ROOT) -I@top_builddir@ -I. +CFLAGS = @CFLAGS@ $(HASH) $(CEXTRAFLAGS) $(CWARNINGS) -I. -I@top_builddir@ -I$(ROOT) LDFLAGS = @LDFLAGS@ # The hashfile is a record of positions seen. It is used by @@ -95,7 +95,6 @@ BINBOOK = -DBINBOOK=\"$(LIBDIR)/$(PROGNAME).bbk\" # patterns may be described in order to support the correct order of moves. PATTERNFILE=$(ROOT)/misc/$(PROGNAME).pat -PATTERN = -DPATTERNFILE=\"$(PATTERNFILE)\" all: @@ -116,7 +115,6 @@ NOTCOMMONFILES = \ book.o \ commondsp.o \ @CURSESDSP@ \ - dspwrappers.o \ eval.o \ genmove.o \ init.o \ @@ -166,9 +164,6 @@ commondsp.o: commondsp.c cursesdsp.o: cursesdsp.c $(CC) $(CFLAGS) -c $< -dspwrappers.o: dspwrappers.c - $(CC) $(CFLAGS) -c $< - genmove.o: genmove.c $(CC) $(CFLAGS) -c $< @@ -191,7 +186,7 @@ main.o: main.c # pattern textfile must be used. makepattern.o: makepattern.c - $(CC) $(CFLAGS) $(PATTERN) -c $< + $(CC) $(CFLAGS) -c $< pattern.o: pattern.c $(CC) $(CFLAGS) -c $< @@ -215,13 +210,13 @@ util.o: util.c # Files specific to particular targets. pat2inc.o: pat2inc.c - $(CC) $(CFLAGS) $(BINBOOK) $(PATTERN) -c $< + $(CC) $(CFLAGS) -c $< sizetest.o: sizetest.c $(CC) $(CFLAGS) -c $< pattern.inc: $(PATTERNFILE) pat2inc - ./pat2inc + ./pat2inc $< $@ # # Other targets. @@ -275,11 +270,11 @@ attacks.o: attacks.c gnushogi.h book.o: book.c gnushogi.h commondsp.o: commondsp.c gnushogi.h cursesdsp.o: cursesdsp.c gnushogi.h -dspwrappers.o: dspwrappers.c gnushogi.h genmove.o: genmove.c gnushogi.h globals.o: globals.c gnushogi.h eval.o: eval.c eval.h gnushogi.h $(SRCDIR)/pattern.h init.o: init.c gnushogi.h $(SRCDIR)/pattern.h +init-common.o: init-common.c gnushogi.h main.o: main.c gnushogi.h makepattern.o: pattern.c gnushogi.h $(SRCDIR)/pattern.h pattern.o: pattern.c gnushogi.h $(SRCDIR)/pattern.h pattern.inc