Trivial typo fixes.
[sgt/agedu] / Buildscr
1 # -*- sh -*-
2 #
3 # bob script to build the agedu tarball.
4
5 module agedu
6
7 # Build the man page.
8 in agedu do make doc
9
10 in agedu do sed '/AC_INIT/s/6.66/r$(revision)/' configure.ac > tmp.ac
11 in agedu do mv tmp.ac configure.ac
12 in agedu do aclocal
13 in agedu do autoconf
14 in agedu do autoheader
15 in agedu do automake -a --foreign
16 in agedu do rm -rf autom4te.cache
17
18 in . do cp -R agedu agedu-r$(revision)
19 in . do rm agedu-r$(revision)/GNUmakefile
20 in . do tar chzvf agedu-r$(revision).tar.gz agedu-r$(revision)
21
22 in agedu do halibut --html=manpage.html agedu.but
23
24 deliver agedu-r$(revision).tar.gz $@
25 deliver agedu/manpage.html $@