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)
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.
29 BUILDROOT = @top_builddir@
30 GNUSHOGIDIR = $(BUILDROOT)/gnushogi
38 all : gnushogi_compile pat2inc bbk
46 -cd $(GNUSHOGIDIR) && $(MAKE) $(PROGNAME)
49 -cd $(GNUSHOGIDIR) && $(MAKE) pat2inc
52 -cd $(GNUSHOGIDIR) && $(MAKE) sizetest
55 -cd $(GNUSHOGIDIR) && $(MAKE) $(PROGNAME).bbk
59 # Alien target architectures
62 win32/Makefile: misc/mkmakefile.mingw-on-cygwin
69 install: gnushogi_install
72 -cd $(GNUSHOGIDIR) && $(MAKE) install
80 clean: gnushogi_clean doc_clean
83 cd $(GNUSHOGIDIR) && $(MAKE) clean
86 cd $(BUILDROOT)/doc && $(MAKE) clean
90 # Building a distribution.
93 DISTNAME = @PACKAGE_TARNAME@-@PACKAGE_VERSION@
96 $(MAKE) maintainerclean
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.
111 config.cache config.log config.status config.h Makefile \
112 $(GNUSHOGIDIR)/Makefile $(GNUSHOGIDIR)/Makefile.profile \
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