Merge branch 'maint'
[gnushogi.git] / gnushogi / Makefile.in
1 #
2 # Makefile for GNU Shogi
3 #
4 # Copyright (c) 1993, 1994 Matthias Mutz
5 # Copyright (c) 1998, 1999 Michael Vanier and the Free Software Foundation
6 #
7 # GNU Shogi is based on GNU Chess
8 # Copyright (c) 1992 Free Software Foundation
9 #
10 # This file is part of GNU Shogi.
11 #
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.
16 #
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.
21 #
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/>.
25 #
26
27 #
28 # gnushogi   is GNU shogi, for raw text, curses, or x output.
29 # gnuminishogi is GNU minishogi, for raw text, curses, or x output.
30 # pat2inc    converts pattern textfile to "pattern.inc" include file.
31 # sizetest   shows the memory usage of the main data structures.
32 #
33
34 SHELL           = /bin/sh
35 INSTALL         = @INSTALL@
36 INSTALL_DATA    = @INSTALL_DATA@
37 INSTALL_PROGRAM = @INSTALL_PROGRAM@
38 ROOT            = @top_srcdir@
39 SRCDIR          = @srcdir@
40
41 VPATH=$(SRCDIR)
42
43 PROGNAME=@PROGNAME@
44
45 # Installation directory.
46 prefix  =   @prefix@
47
48 # Where the binaries live.
49 BINDIR  =   $(prefix)/bin
50
51 # Where the language description, the book, and the 
52 # persistent hashtable live.
53 LIBDIR  =   $(prefix)/lib/$(PROGNAME)
54
55 # Where the man page goes.
56 MANDIR  = $(prefix)/man/man6
57
58 # Where the info file goes.
59 INFODIR = $(prefix)/info
60
61 # For _pow external 
62 LIBS    = -lm
63
64 # Display routines.
65 LCURSES = @LIBCURSES@
66
67
68 #
69 # C compiler and compiler options.
70 #
71
72 CC          = @CC@
73 CWARNINGS   = @WARNINGS@
74 CEXTRAFLAGS = @CEXTRAFLAGS@
75 CFLAGS      = @CFLAGS@ $(HASH) $(CEXTRAFLAGS) $(CWARNINGS) -I. -I@top_builddir@ -I$(ROOT)
76 LDFLAGS     = @LDFLAGS@
77
78 # The hashfile is a record of positions seen. It is used by
79 # GNU Shogi to avoid making the same mistakes, a form of learning.
80
81 HASH       = -DHASHFILE=\"$(LIBDIR)/$(PROGNAME).hsh\"
82
83
84 # The "book" is a record of the first few moves, for playing good
85 # moves easily and quickly, saving time, and irritating the human
86 # opponent.
87
88 TEXTBOOK   = -DBOOK=\"$(LIBDIR)/$(PROGNAME).tbk\"
89 BINBOOK    = -DBINBOOK=\"$(LIBDIR)/$(PROGNAME).bbk\"
90
91
92 # The pattern file contains various opening patterns. The program tries to
93 # obtain such a pattern in the opening stage. Sequences of opening
94 # patterns may be described in order to support the correct order of moves.
95
96 PATTERNFILE=$(ROOT)/misc/$(PROGNAME).pat
97 PATTERN    = -DPATTERNFILE=\"$(PATTERNFILE)\"
98
99
100 all:
101         @echo No target specified.
102
103
104 #
105 # Source files.
106 #
107
108 COMMONFILES = \
109                 globals.o      \
110                 init-common.o    \
111                 pattern-common.o
112
113 NOTCOMMONFILES = \
114                 attacks.o      \
115                 book.o         \
116                 commondsp.o    \
117                 @CURSESDSP@    \
118                 eval.o         \
119                 genmove.o      \
120                 init.o         \
121                 pattern.o      \
122                 rawdsp.o       \
123                 search.o       \
124                 tcontrl.o      \
125                 util.o
126
127 GNUSHOGI_FILES  = $(COMMONFILES) $(NOTCOMMONFILES) main.o
128
129
130 PAT2INCFILES    = $(COMMONFILES) makepattern.o pat2inc.o
131
132
133 #
134 # Primary targets.
135 #
136
137 $(PROGNAME):
138         $(CC) $(CFLAGS) -o $(PROGNAME) $(GNUSHOGI_FILES) $(LDFLAGS) $(LCURSES) $(LIBS)
139
140 pat2inc:
141         $(CC) $(CFLAGS) -o pat2inc $(PAT2INCFILES) $(LDFLAGS) $(LCURSES) $(LIBS)
142
143 sizetest:
144         $(CC) $(CFLAGS) -o sizetest sizetest.o $(LDFLAGS) $(LIBS)
145
146 profile:
147         $(MAKE) -f Makefile.profile gnushogi
148
149 #
150 # Object files.
151 #
152
153 # Common files.
154
155 attacks.o: attacks.c
156         $(CC) $(CFLAGS) -c $<
157
158 book.o: book.c
159         $(CC) $(CFLAGS) $(TEXTBOOK) $(BINBOOK) -c $<
160
161 commondsp.o: commondsp.c
162         $(CC) $(CFLAGS) -c $<
163
164 cursesdsp.o: cursesdsp.c
165         $(CC) $(CFLAGS) -c $<
166
167 genmove.o: genmove.c
168         $(CC) $(CFLAGS) -c $<
169
170 globals.o: globals.c
171         $(CC) $(CFLAGS) -c $<
172
173 eval.o: eval.c
174         $(CC) $(CFLAGS) -c $<
175
176 init.o: init.c
177         $(CC)  $(CFLAGS) -c $<
178
179 init-common.o: init-common.c
180         $(CC)  $(CFLAGS) $(LANGF) -c $<
181
182 main.o: main.c
183         $(CC) $(CFLAGS) $(BINBOOK) -c $<
184
185 # To create "pattern.inc" with "pat2inc", the external
186 # pattern textfile must be used.
187
188 makepattern.o: makepattern.c
189         $(CC) $(CFLAGS) $(PATTERN) -c $<
190
191 pattern.o: pattern.c
192         $(CC)  $(CFLAGS) -c $<
193
194 pattern-common.o: pattern-common.c
195         $(CC)  $(CFLAGS) -c $<
196
197 rawdsp.o: rawdsp.c
198         $(CC) $(CFLAGS) -c $<
199
200 search.o: search.c
201         $(CC) $(CFLAGS) -c $<
202
203 tcontrl.o: tcontrl.c
204         $(CC) $(CFLAGS) -c $<
205
206 util.o: util.c
207         $(CC) $(CFLAGS) -c $<
208
209
210 # Files specific to particular targets.
211
212 pat2inc.o: pat2inc.c
213         $(CC) $(CFLAGS) -c $<
214
215 sizetest.o: sizetest.c
216         $(CC) $(CFLAGS) -c $<
217
218 pattern.inc: $(PATTERNFILE) pat2inc
219         ./pat2inc
220
221 #
222 # Other targets.
223 #
224
225 $(PROGNAME).bbk:
226         @if [ -f ./$(PROGNAME).bbk ]; then rm ./$(PROGNAME).bbk; fi
227         echo quit > test
228         cat $(ROOT)/misc/$(PROGNAME).tbk > _tmp_t
229         cat test | ./$(PROGNAME) -R -b _tmp_t -B ./$(PROGNAME).bbk -S 8000 -P 40 3 0
230         rm test _tmp_t
231         @echo
232
233
234 #
235 # Installation.
236 #
237
238 install: $(PROGNAME)
239         strip $(PROGNAME)
240         $(INSTALL_PROGRAM) -d $(BINDIR)
241         $(INSTALL_PROGRAM) -d $(LIBDIR)
242         $(INSTALL_PROGRAM) -d $(MANDIR)
243         $(INSTALL_PROGRAM) -d $(INFODIR)
244         $(INSTALL_PROGRAM) $(PROGNAME) $(BINDIR)
245         $(INSTALL_DATA)    $(ROOT)/doc/gnushogi.6     $(MANDIR)
246         $(INSTALL_DATA)    $(ROOT)/doc/gnushogi.info* $(INFODIR)
247         $(INSTALL_DATA)    $(PROGNAME).bbk $(LIBDIR)/$(PROGNAME).bbk
248
249
250 #
251 # Cleanup.
252 #
253
254 CLEANFILES = *.o gnushogi gnuminishogi sizetest pat2inc CLp* *.bbk
255
256 clean: 
257         @for file in $(CLEANFILES); do \
258         if [ -f $$file ]; then rm $$file; fi; \
259         done
260
261
262 #
263 # Dependencies.
264 #
265
266 $(PROGNAME):   $(GNUSHOGI_FILES)
267 pat2inc:       $(PAT2INCFILES)
268 sizetest:      sizetest.o 
269 attacks.o:     attacks.c gnushogi.h
270 book.o:        book.c gnushogi.h
271 commondsp.o:   commondsp.c gnushogi.h
272 cursesdsp.o:   cursesdsp.c gnushogi.h
273 genmove.o:     genmove.c gnushogi.h
274 globals.o:     globals.c gnushogi.h
275 eval.o:        eval.c eval.h gnushogi.h $(SRCDIR)/pattern.h
276 init.o:        init.c gnushogi.h $(SRCDIR)/pattern.h
277 init-common.o: init-common.c gnushogi.h
278 main.o:        main.c gnushogi.h
279 makepattern.o: pattern.c gnushogi.h $(SRCDIR)/pattern.h
280 pattern.o:     pattern.c gnushogi.h $(SRCDIR)/pattern.h pattern.inc
281 rawdsp.o:      rawdsp.c gnushogi.h
282 search.o:      search.c gnushogi.h
283 tcontrl.o:     tcontrl.c gnushogi.h
284 util.o:        util.c gnushogi.h
285 pat2inc.o:     pat2inc.c $(SRCDIR)/pattern.h $(SRCDIR)/gnushogi.h
286 sizetest.o:    sizetest.c $(SRCDIR)/gnushogi.h $(SRCDIR)/eval.h
287 $(PROGNAME).bbk:  $(PROGNAME)
288