aboutsummaryrefslogtreecommitdiffstats
path: root/chapter8/dejagnu.sh
blob: 273ab0f96aca41400a5f555391d30331e21c1f6f (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

./configure --prefix=/usr &&
makeinfo --html --no-split -o doc/dejagnu.html doc/dejagnu.texi &&
makeinfo --plaintext -o doc/dejagnu.txt  doc/dejagnu.texi &&

make -j1 install &&
install -v -dm755 /usr/share/doc/dejagnu-"${VERSION}" &&
install -v -m644 doc/dejagnu.{html,txt} /usr/share/doc/dejagnu-"${VERSION}"