source: git/make_release @ fd51dc3

RELEASE/1.0RELEASE/1.1RELEASE/1.2debug-cidebug-ci-sanitisersfaster-cavernloglog-selectstereostereo-2025walls-datawalls-data-hanging-as-warningwarn-only-for-hanging-survey
Last change on this file since fd51dc3 was fd51dc3, checked in by Olly Betts <olly@…>, 25 years ago

Fixed bug; report where error was if we bail out.

git-svn-id: file:///home/survex-svn/survex/trunk@494 4b37db11-9a0c-4f06-9ece-9ab7cdaee568

  • Property mode set to 100755
File size: 1019 bytes
RevLine 
[d7acd89]1#! /bin/sh
[fd51dc3]2if ! cvs diff > /dev/null 2> /dev/null ; then
[d7acd89]3   echo There are changes not checked into CVS - please rectify
4   exit 1
5fi
6# Update ChangeLog
[fd51dc3]7if ! ../cvs2cl/cvs2cl.pl 2> /dev/null ; then
8   echo Failed to update ChangeLog from CVS
9   exit 1
10fi
11if test -f Makefile ; then
12   if ! make distclean ; then
13      echo make distclean failed
14      exit 1
15   fi
16fi
17if ! make dos_doc_zip ; then
18   echo make dos_doc_zip failed
19   exit 1
20fi
21if ! env CC=i386-pc-msdosdjgpp-gcc LDFLAGS=-s STRIP=echo CAVEROT=caverot.exe \
22 CRLIB=-lalleg CROBJX=dosrot.o ./configure --with-x=no ; then
23   echo djgpp configure failed
24   exit 1
25fi
26if ! make djgpp ; then
27   echo djgpp make failed
28   exit 1
29fi
30if ! make distclean ; then
31   echo make distclean failed
32   exit 1
33fi
[d7acd89]34PATH=/usr/local/cross-tools/bin:/usr/local/cross-tools/i386-mingw32msvc/bin:$PATH
[fd51dc3]35if ! env ac_cv_c_bigendian=no LDFLAGS=-s ./configure --with-x=no ; then
36   echo mingw configure failed
37   exit 1
38fi
39if ! make mingw ; then
40   echo mingw make failed
41   exit 1
42fi
43
Note: See TracBrowser for help on using the repository browser.