Stop hardcoding filenames inside pat2inc, use commandline parameters.
[gnushogi.git] / Makefile.in
index 2d89bad..b67c486 100644 (file)
@@ -24,7 +24,6 @@
 # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
 #
 
-VERSION     = 1.3.2
 ROOT        = @top_srcdir@
 BUILDROOT   = @top_builddir@
 GNUSHOGIDIR = $(BUILDROOT)/gnushogi
@@ -60,6 +59,13 @@ bbk:
 
 
 #
+# Alien target architectures
+#
+
+win32/Makefile: misc/mkmakefile.mingw-on-cygwin
+       $<
+
+#
 # Installation.
 #
 
@@ -99,10 +105,11 @@ dist:
        $(MAKE) maintainerclean
        rm -rf $(DISTNAME)
        mkdir $(DISTNAME)
-       tar -cf - --exclude .git $(ROOT) | (cd $(DISTNAME) && tar -xf -)
+       tar -cf - --exclude .git --exclude $(DISTNAME) $(ROOT) | (cd $(DISTNAME) && tar -xf -)
        cd $(DISTNAME) && $(ROOT)/autogen.sh && $(ROOT)/configure
        cd $(DISTNAME)/doc && $(MAKE) info
-       cd $(DISTNAME) && make distclean
+       cd $(DISTNAME) && $(MAKE) win32/Makefile
+       cd $(DISTNAME) && $(MAKE) distclean
        tar -zcf $(DISTNAME).tar.gz $(DISTNAME)
 
 #
@@ -116,13 +123,14 @@ DISTCLEANFILES = \
 
 distclean: clean
        rm -rf $(DISTCLEANFILES)
+       find -name '*~' | xargs rm -f
        cd $(BUILDROOT)/doc && $(MAKE) distclean
 
 #
 # Extra cleanup, for the maintainer only.
 #
 
-MAINTAINERCLEANFILES = configure config.h.in
+MAINTAINERCLEANFILES = configure config.h.in win32/Makefile
 
 maintainerclean: distclean
        rm -f $(MAINTAINERCLEANFILES)