source: git/make_release @ eea518c

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 eea518c was eea518c, checked in by Olly Betts <olly@…>, 25 years ago

Run configure' before make distcheck'.

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

  • Property mode set to 100755
File size: 1.1 KB
Line 
1#! /bin/sh
2if ! cvs diff > /dev/null 2> /dev/null ; then
3   echo There are changes not checked into CVS - please rectify
4   exit 1
5fi
6# Update ChangeLog
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 ! ./configure ; then
18   echo configure failed
19   exit 1
20fi
21if ! make distcheck ; then
22   echo make distcheck failed
23   exit 1
24fi
25if ! make dos_doc_zip ; then
26   echo make dos_doc_zip failed
27   exit 1
28fi
29if ! env CC=i386-pc-msdosdjgpp-gcc LDFLAGS=-s STRIP=echo CAVEROT=caverot.exe \
30 CRLIB=-lalleg CROBJX=dosrot.o ./configure --with-x=no ; then
31   echo djgpp configure failed
32   exit 1
33fi
34if ! make djgpp ; then
35   echo djgpp make failed
36   exit 1
37fi
38if ! make distclean ; then
39   echo make distclean failed
40   exit 1
41fi
42PATH=/usr/local/cross-tools/bin:/usr/local/cross-tools/i386-mingw32msvc/bin:$PATH
43if ! env ac_cv_c_bigendian=no LDFLAGS=-s ./configure --with-x=no ; then
44   echo mingw configure failed
45   exit 1
46fi
47if ! make mingw ; then
48   echo mingw make failed
49   exit 1
50fi
Note: See TracBrowser for help on using the repository browser.