diff options
| author | Simon Tatham <anakin@pobox.com> | 2017-05-15 08:37:50 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2017-05-15 08:39:10 +0100 |
| commit | b6b32a8be2438548a848639f5f1f098a8b70a720 (patch) | |
| tree | 9d0d50a20f5a6bbca378d1365fbe55d9dd0b3d17 /Buildscr.test | |
| parent | 8fa78c44c9cad7ffd50fb914c9ebaa3ea67a5f6f (diff) | |
| download | halibut-b6b32a8be2438548a848639f5f1f098a8b70a720.zip halibut-b6b32a8be2438548a848639f5f1f098a8b70a720.tar.gz halibut-b6b32a8be2438548a848639f5f1f098a8b70a720.tar.bz2 halibut-b6b32a8be2438548a848639f5f1f098a8b70a720.tar.xz | |
Remove Buildscr.test.
Its purpose was as a convenient way to make the full set of test
output files from inputs/test.but, _even_ the one that needed help
from a Windows (or close enough) build machine to run HHC. But now we
can generate CHM directly, the latter is not necessary, so this build
script is no longer doing anything you can't do just as easily by just
running 'halibut inputs/test.but'.
Diffstat (limited to '')
| -rw-r--r-- | Buildscr.test | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/Buildscr.test b/Buildscr.test deleted file mode 100644 index 8b2e425..0000000 --- a/Buildscr.test +++ /dev/null @@ -1,31 +0,0 @@ -# -*- sh -*- -# Build script to build a test file in all Halibut formats. - -module halibut - -# Build a local binary of Halibut. -in halibut do make - -# Run it on the standard test input file. This generates most outputs. -in halibut do ./build/halibut inputs/test.but - -# Run it again with lots of extra options, to generate HTML Help -# Compiler input. -in halibut do mkdir htmlhelp -in halibut/htmlhelp do ../build/halibut --html ../inputs/test.but -Chtml-leaf-level:infinite -Chtml-leaf-contains-contents:false -Chtml-suppress-navlinks:true -Chtml-suppress-address:true -Chtml-contents-filename:index.html -Chtml-template-filename:%k.html -Chtml-template-fragment:%k -Chtml-mshtmlhelp-chm:output.chm -Chtml-mshtmlhelp-project:output.hhp -Chtml-mshtmlhelp-contents:output.hhc -Chtml-mshtmlhelp-index:output.hhk -Chtml-body-end: - -# Delegate to Windows to compile the HTML Help file. -delegate windows - in halibut/htmlhelp do hhc output.hhp; test -f output.chm - return halibut/htmlhelp/output.chm -enddelegate - -deliver halibut/output.txt $@ -deliver halibut/*.html $@ -deliver halibut/output.hlp $@ -deliver halibut/output.cnt $@ -deliver halibut/htmlhelp/output.chm $@ -deliver halibut/output.1 $@ -deliver halibut/output.ps $@ -deliver halibut/output.pdf $@ -deliver halibut/output.info* $@ |