Kill dead code in pat2inc.
[gnushogi.git] / Makefile.in
1 #
2 # Makefile for GNU Shogi and xshogi
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 1, 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.  If not, write to
24 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
25 #
26
27 ROOT        = @top_srcdir@
28 BUILDROOT   = @top_builddir@
29 GNUSHOGIDIR = $(BUILDROOT)/gnushogi
30 XSHOGIDIR   = $(BUILDROOT)/xshogi
31
32 PROGNAME = @PROGNAME@
33
34 #
35 # Default targets.
36 #
37
38 all : gnushogi_compile pat2inc bbk @XSHOGI@
39
40
41 #
42 # Primary targets.
43 #
44
45 gnushogi_compile:
46         -cd $(GNUSHOGIDIR) && $(MAKE) $(PROGNAME)
47
48 pat2inc:
49         -cd $(GNUSHOGIDIR) && $(MAKE) pat2inc
50
51 sizetest:
52         -cd $(GNUSHOGIDIR) && $(MAKE) sizetest
53
54 xshogi_compile:
55         -cd $(XSHOGIDIR) && $(MAKE)
56
57 bbk:
58         -cd $(GNUSHOGIDIR) && $(MAKE) $(PROGNAME).bbk
59
60
61 #
62 # Installation.
63 #
64
65 install: gnushogi_install @XSHOGIINSTALL@
66
67 gnushogi_install:
68         -cd $(GNUSHOGIDIR) && $(MAKE) install
69
70 xshogi_install: $(XSHOGIDIR)/xshogi
71         -cd $(XSHOGIDIR) && $(MAKE) install
72
73
74
75 #
76 # Cleanup.
77 #
78
79 clean: gnushogi_clean @XSHOGICLEAN@ doc_clean
80
81 gnushogi_clean:
82         cd $(GNUSHOGIDIR) && $(MAKE) clean
83
84 xshogi_clean:
85         cd $(XSHOGIDIR) && $(MAKE) clean
86
87 doc_clean:
88         cd $(BUILDROOT)/doc && $(MAKE) clean
89
90
91 #
92 # Building a distribution.
93 #
94
95 DISTNAME = @PACKAGE_TARNAME@-@PACKAGE_VERSION@
96
97 dist:
98         $(MAKE) maintainerclean
99         rm -rf $(DISTNAME)
100         mkdir $(DISTNAME)
101         tar -cf - --exclude .git --exclude $(DISTNAME) $(ROOT) | (cd $(DISTNAME) && tar -xf -)
102         cd $(DISTNAME) && $(ROOT)/autogen.sh && $(ROOT)/configure
103         cd $(DISTNAME)/doc && $(MAKE) info
104         cd $(DISTNAME) && $(MAKE) distclean
105         tar -zcf $(DISTNAME).tar.gz $(DISTNAME)
106
107 #
108 # Return to a pristine pre-configuration state.
109 #
110
111 DISTCLEANFILES = \
112         config.cache config.log config.status config.h Makefile \
113     $(GNUSHOGIDIR)/Makefile $(GNUSHOGIDIR)/Makefile.profile \
114     $(XSHOGIDIR)/Makefile autom4te.cache
115
116 distclean: clean
117         rm -rf $(DISTCLEANFILES)
118         find -name '*~' | xargs rm
119         cd $(BUILDROOT)/doc && $(MAKE) distclean
120
121 #
122 # Extra cleanup, for the maintainer only.
123 #
124
125 MAINTAINERCLEANFILES = configure config.h.in
126
127 maintainerclean: distclean
128         rm -f $(MAINTAINERCLEANFILES)
129         cd $(BUILDROOT)/doc && $(MAKE) maintainerclean