aboutsummaryrefslogtreecommitdiffstats
path: root/chapter8/dejagnu.sh
diff options
context:
space:
mode:
Diffstat (limited to 'chapter8/dejagnu.sh')
-rw-r--r--chapter8/dejagnu.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/chapter8/dejagnu.sh b/chapter8/dejagnu.sh
new file mode 100644
index 0000000..fc94545
--- /dev/null
+++ b/chapter8/dejagnu.sh
@@ -0,0 +1,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}"