source: git/make_release@ d1e494a

RELEASE/1.0 RELEASE/1.1 RELEASE/1.2 debug-ci debug-ci-sanitisers faster-cavernlog log-select main stereo stereo-2025 walls-data walls-data-hanging-as-warning warn-only-for-hanging-survey
Last change on this file since d1e494a was 7fda0c8, checked in by Olly Betts <olly@…>, 26 years ago

.cvsignore: Updated.

Makefile.am: added rpm target to build rpms.

src/netskel.c: Disabled experimental gross-error detection code.

NEWS: updated.

0.95-prerelease7.

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

  • Property mode set to 100755
File size: 1.3 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
21# make distcheck fails - cvs version of automake doesn't clean up all the
22# files it creates...
23if ! make dist ; then
24 echo make dist failed
25 exit 1
26fi
27if ! make rpm ; then
28 echo make rpm failed
29 exit 1
30fi
31if ! make dos_doc_zip ; then
32 echo make dos_doc_zip failed
33 exit 1
34fi
35if ! make distclean ; then
36 echo make distclean failed
37 exit 1
38fi
39if ! env CC=i386-pc-msdosdjgpp-gcc LDFLAGS=-s STRIP=echo CAVEROT=caverot.exe \
40 CRLIB=-lalleg CROBJX=dosrot.o ./configure --with-x=no ; then
41 echo djgpp configure failed
42 exit 1
43fi
44if ! make djgpp ; then
45 echo djgpp make failed
46 exit 1
47fi
48if ! make distclean ; then
49 echo make distclean failed
50 exit 1
51fi
52PATH=/usr/local/cross-tools/bin:/usr/local/cross-tools/i386-mingw32msvc/bin:$PATH
53if ! env ac_cv_c_bigendian=no LDFLAGS=-s ./configure --with-x=no ; then
54 echo mingw configure failed
55 exit 1
56fi
57if ! make mingw ; then
58 echo mingw make failed
59 exit 1
60fi
Note: See TracBrowser for help on using the repository browser.