2 # Makefile for GNU Shogi
4 # Copyright (c) 1993, 1994 Matthias Mutz
5 # Copyright (c) 1998, 1999 Michael Vanier and the Free Software Foundation
7 # GNU Shogi is based on GNU Chess
8 # Copyright (c) 1992 Free Software Foundation
10 # This file is part of GNU Shogi.
12 # GNU Shogi is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either ../version 3 of the License, or (at your option)
15 # any later ../version.
17 # GNU Shogi is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with GNU Shogi; see the file COPYING.
24 # If not, see <http://www.gnu.org/licenses/>.
28 # gnushogi is GNU shogi, for raw text, curses, or x output.
29 # pat2inc converts pattern textfile to "pattern.inc" include file.
30 # sizetest shows the memory usage of the main data structures.
36 INSTALL_DATA = @INSTALL_DATA@
37 INSTALL_PROGRAM = @INSTALL_PROGRAM@
43 # Installation directory.
46 # Where the binaries live.
47 BINDIR = $(prefix)/bin
49 # Where the language description, the book, and the
50 # persistent hashtable live.
51 LIBDIR = $(prefix)/lib/gnushogi
53 # Where the man page goes.
54 MANDIR = $(prefix)/man/man6
56 # Where the info file goes.
57 INFODIR = $(prefix)/info
63 LCURSES = -lcurses -ltermcap
67 # C compiler and compiler options.
71 CWARNINGS = @WARNINGS@
72 CEXTRAFLAGS = @CEXTRAFLAGS@
73 CFLAGS = @CFLAGS@ $(CEXTRAFLAGS) $(CWARNINGS) -I$(ROOT) -I@top_builddir@
76 # The hashfile is a record of positions seen. It is used by
77 # GNU Shogi to avoid making the same mistakes, a form of learning.
79 HASH = -DHASHFILE=\"$(LIBDIR)/gnushogi.hsh\"
82 # The "book" is a record of the first few moves, for playing good
83 # moves easily and quickly, saving time, and irritating the human
86 TEXTBOOK = -DBOOK=\"$(LIBDIR)/gnushogi.tbk\"
87 BINBOOK = -DBINBOOK=\"$(LIBDIR)/gnushogi.bbk\"
90 # The language file describes capabilities of the program. It may
91 # be useful for customizing gnushogi for non-English-speaking players.
93 LANGF = -DLANGFILE=\"../misc/gnushogi.lng\"
96 # The pattern file contains various opening patterns. The program tries to
97 # obtain such a pattern in the opening stage. Sequences of opening
98 # patterns may be described in order to support the correct order of moves.
100 PATTERN = -DPATTERNFILE=\"../misc/gnushogi.pat\"
104 @echo No target specified.
128 GNUSHOGI_FILES = $(COMMONFILES) main.o
131 PAT2INCFILES = $(COMMONFILES) makepattern.o pat2inc.o
139 $(CC) $(CFLAGS) -o gnushogi $(GNUSHOGI_FILES) $(LDFLAGS) $(LCURSES) $(LIBS)
142 $(CC) $(CFLAGS) -o pat2inc $(PAT2INCFILES) $(LDFLAGS) $(LCURSES) $(LIBS)
145 $(CC) $(CFLAGS) -o sizetest sizetest.o $(LDFLAGS) $(LIBS)
148 $(MAKE) -f Makefile.profile gnushogi
157 $(CC) $(CFLAGS) -c $<
160 $(CC) $(CFLAGS) $(TEXTBOOK) $(BINBOOK) -c $<
162 commondsp.o: commondsp.c
163 $(CC) $(CFLAGS) -c $<
165 cursesdsp.o: cursesdsp.c
166 $(CC) $(CFLAGS) -c $<
168 dspwrappers.o: dspwrappers.c
169 $(CC) $(CFLAGS) -c $<
172 $(CC) $(CFLAGS) -c $<
175 $(CC) $(CFLAGS) -c $<
178 $(CC) $(CFLAGS) -c $<
181 $(CC) $(CFLAGS) $(LANGF) -c $<
184 $(CC) $(CFLAGS) $(BINBOOK) -c $<
186 # To create "pattern.inc" with "pat2inc", the external
187 # pattern textfile must be used.
189 makepattern.o: makepattern.c
190 $(CC) $(CFLAGS) $(PATTERN) -c $<
193 $(CC) $(CFLAGS) -c $<
196 $(CC) $(CFLAGS) -c $<
199 $(CC) $(CFLAGS) -c $<
202 $(CC) $(CFLAGS) -c $<
205 $(CC) $(CFLAGS) -c $<
208 $(CC) $(CFLAGS) -c $<
211 # Files specific to particular targets.
214 $(CC) $(CFLAGS) $(LANGF) $(BINBOOK) $(PATTERN) -c $<
216 sizetest.o: sizetest.c
217 $(CC) $(CFLAGS) -c $<
225 @if [ -f ./gnushogi.bbk ]; then rm ./gnushogi.bbk; fi
227 cat $(ROOT)/misc/gnushogi.tbk > _tmp_t
228 cat test | ./gnushogi -R -b _tmp_t -B ./gnushogi.bbk -S 8000 -P 40 3 0
239 $(INSTALL_PROGRAM) -d $(BINDIR)
240 $(INSTALL_PROGRAM) -d $(LIBDIR)
241 $(INSTALL_PROGRAM) -d $(MANDIR)
242 $(INSTALL_PROGRAM) -d $(INFODIR)
243 $(INSTALL_PROGRAM) gnushogi $(BINDIR)
244 $(INSTALL_DATA) $(ROOT)/doc/gnushogi.6 $(MANDIR)
245 $(INSTALL_DATA) $(ROOT)/doc/gnushogi.info* $(INFODIR)
246 $(INSTALL_DATA) gnushogi.bbk $(LIBDIR)/gnushogi.bbk
253 CLEANFILES = *.o gnushogi sizetest pat2inc CLp* *.bbk
256 @for file in $(CLEANFILES); do \
257 if [ -f $$file ]; then rm $$file; fi; \
265 gnushogi: $(GNUSHOGI_FILES)
266 pat2inc: $(PAT2INCFILES)
268 attacks.o: attacks.c gnushogi.h $(ROOT)/version.h
269 book.o: book.c gnushogi.h $(ROOT)/version.h
270 commondsp.o: commondsp.c gnushogi.h $(ROOT)/version.h
271 cursesdsp.o: cursesdsp.c gnushogi.h $(ROOT)/version.h
272 dspwrappers.o: dspwrappers.c gnushogi.h $(ROOT)/version.h
273 genmove.o: genmove.c gnushogi.h $(ROOT)/version.h
274 globals.o: globals.c gnushogi.h $(ROOT)/version.h
275 eval.o: eval.c eval.h gnushogi.h $(ROOT)/version.h $(SRCDIR)/pattern.h
276 init.o: init.c gnushogi.h $(ROOT)/version.h $(SRCDIR)/pattern.h
277 main.o: main.c gnushogi.h $(ROOT)/version.h
278 makepattern.o: pattern.c gnushogi.h $(SRCDIR)/pattern.h
279 pattern.o: pattern.c gnushogi.h $(SRCDIR)/pattern.h $(SRCDIR)/pattern.inc
280 rawdsp.o: rawdsp.c gnushogi.h $(ROOT)/version.h
281 search.o: search.c gnushogi.h $(ROOT)/version.h
282 sysdeps.o: sysdeps.c gnushogi.h $(ROOT)/version.h
283 tcontrl.o: tcontrl.c gnushogi.h $(ROOT)/version.h
284 util.o: util.c gnushogi.h $(ROOT)/version.h
285 pat2inc.o: pat2inc.c $(SRCDIR)/pattern.h $(SRCDIR)/gnushogi.h
286 sizetest.o: sizetest.c $(SRCDIR)/gnushogi.h $(SRCDIR)/eval.h
287 gnushogi.bbk: gnushogi