1#!/bin/sh
2# qqwing - Sudoku solver and generator
3# Copyright (C) 2014 Stephen Ostermiller
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 2 of the License, or
8# (at your option) any later version.
9#
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License along
16# with this program; if not, write to the Free Software Foundation, Inc.,
17# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18set -e
19
20version=`build/version.sh`
21tgz=qqwing-$version.tar.gz
22
23if [ -e target/$tgz ]
24then
25	newer=`find target/qqwing -type f -newer target/$tgz`
26	if [ "z$newer" = "z" ]
27	then
28		exit 0
29	fi
30fi
31
32cd target/automake
33make dist
34cd ../..
35cp target/automake/$tgz target/$tgz
36ls target/$tgz
37
38