Start NEWS section for 1.4.3.
[gnushogi.git] / Makefile.in
blob45f95971fd275265fbd36d82f206785d5ffba95f
2 # Makefile for GNU Shogi
4 # Copyright (c) 1993, 1994 Matthias Mutz
5 # Copyright (c) 1998, 1999 Michael Vanier and the Free Software Foundation
6 # Copyright (c) 2008, 2013, 2014 Yann Dirson and the Free Software Foundation
8 # GNU Shogi is based on GNU Chess
9 # Copyright (c) 1992 Free Software Foundation
11 # This file is part of GNU Shogi.
13 # GNU Shogi is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 1, or (at your option)
16 # any later version.
18 # GNU Shogi is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with GNU Shogi; see the file COPYING. If not, write to
25 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
28 ROOT = @top_srcdir@
29 BUILDROOT = @top_builddir@
30 GNUSHOGIDIR = $(BUILDROOT)/gnushogi
32 PROGNAME = @PROGNAME@
35 # Default targets.
38 all:
39 cd $(GNUSHOGIDIR) && $(MAKE) all
42 # Primary targets.
45 gnushogi_compile:
46 cd $(GNUSHOGIDIR) && $(MAKE) $(PROGNAME)
48 pat2inc:
49 cd $(GNUSHOGIDIR) && $(MAKE) pat2inc
51 sizetest:
52 cd $(GNUSHOGIDIR) && $(MAKE) sizetest
54 bbk:
55 cd $(GNUSHOGIDIR) && $(MAKE) $(PROGNAME).bbk
59 # Alien target architectures
62 win32/Makefile: misc/mkmakefile.mingw-on-cygwin
66 # Installation.
69 install: gnushogi_install
71 gnushogi_install:
72 -cd $(GNUSHOGIDIR) && $(MAKE) install
77 # Cleanup.
80 clean: gnushogi_clean doc_clean
82 gnushogi_clean:
83 cd $(GNUSHOGIDIR) && $(MAKE) clean
85 doc_clean:
86 cd $(BUILDROOT)/doc && $(MAKE) clean
90 # Building a distribution.
93 DISTNAME = @PACKAGE_TARNAME@-@PACKAGE_VERSION@
95 dist:
96 $(MAKE) maintainerclean
97 rm -rf $(DISTNAME)
98 mkdir $(DISTNAME)
99 tar -cf - --exclude .git --exclude $(DISTNAME) $(ROOT) | (cd $(DISTNAME) && tar -xf -)
100 cd $(DISTNAME) && $(ROOT)/autogen.sh && $(ROOT)/configure
101 cd $(DISTNAME)/doc && $(MAKE) info
102 cd $(DISTNAME) && $(MAKE) win32/Makefile
103 cd $(DISTNAME) && $(MAKE) distclean
104 tar -zcf $(DISTNAME).tar.gz $(DISTNAME)
107 # Return to a pristine pre-configuration state.
110 DISTCLEANFILES = \
111 config.cache config.log config.status config.h Makefile \
112 $(GNUSHOGIDIR)/Makefile $(GNUSHOGIDIR)/Makefile.profile \
113 autom4te.cache
115 distclean: clean
116 rm -rf $(DISTCLEANFILES)
117 find -name '*~' | xargs rm -f
118 cd $(BUILDROOT)/doc && $(MAKE) distclean
121 # Extra cleanup, for the maintainer only.
124 MAINTAINERCLEANFILES = configure config.h.in win32/Makefile
126 maintainerclean: distclean
127 rm -f $(MAINTAINERCLEANFILES)
128 cd $(BUILDROOT)/doc && $(MAKE) maintainerclean