Oops. PAPERSIZE wasn't defined in the stub Make.conf.
[grace.git] / scripts / makerelease
blob9d77d8f1db89621d20ff74aaed68157fe37a1e6d
1 #!/bin/sh
2 PATH=/bin:/usr/bin:/usr/local/bin
3 export PATH
5 make configure
7 cat << EOF > Make.conf
8 .SUFFIXES:
9 O=.o
10 EXE=
11 YACC=bison -y
12 XCC=xcc
13 PAPERSIZE=a4
14 EOF
16 make NEWS
17 make ChangeLog
19 CDIR=`pwd`
20 CDIR_BNAME=`basename $CDIR`
21 cd src
22 touch Make.dep
23 make pars.c
24 make xml_in.c
25 rm -f Make.dep
26 cd ..
27 cd doc
28 make all
29 cd ..
30 rm -f Make.conf
31 cd ..
32 tar --exclude \*CVS\* --exclude .cvsignore -cvzf ${CDIR_BNAME}.tar.gz $CDIR_BNAME
33 cd -