source: git/doc/simple-make @ 2e553a

spielwiese
Last change on this file since 2e553a was cc7519, checked in by Hans Schönemann <hannes@…>, 15 years ago
*hannes: syntax git-svn-id: file:///usr/local/Singular/svn/trunk@11148 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100755
File size: 1.2 KB
Line 
1#!/bin/sh
2#
3# assume texi2dvi, perl in path
4# cwd=doc
5#
6cp examples.doc examples.tex
7cp general.doc general.tex
8cp math.doc math.tex
9cp pdata.doc pdata.tex
10cp platform.doc platform.tex
11cp pluconventions.doc pluconventions.tex
12cp plumath.doc plumath.tex
13cp pluplatform.doc pluplatform.tex
14cp plural.doc plural.tex
15cp pluralmain.doc pluralmain.tex
16cp plureference.doc plureference.tex
17cp plutypes.doc plutypes.tex
18cp reference.doc reference.tex
19cp start.doc start.tex
20cp ti_ip.doc ti_ip.tex
21cp tricks.doc tricks.tex
22cp types.doc types.tex
23cp decodegb.doc decodegb.tex
24for i in pluplatform.tex plural.tex plumath.tex plureference.tex plutypes.tex pluconventions.tex
25do
26  sed 's/@value{PSUFFIX}/(plural)/g' <$i >s-$i
27done
28sed -e 's/@include plu/@include s-plu/' -e 's/@value{PSUFFIX}/(plural)/g' < plural.tex >s-plural.tex
29# DVI: --------------------------------------------
30texi2dvi singular.doc
31# INFO: -------------------------------------------
32makeinfo --force --no-split singular.doc
33# HTML: -------------------------------------------
34/bin/rm -rf tmp
35mkdir tmp
36perl ./texi2html -init_file t2h_singular.init \
37  -l2h -short_ext -l2h_tmp tmp -subdir html -prefix simple \
38  -top_file index.htm  singular.doc
39#
40echo "created: singular.hlp (info), singular.dvi, html/index.htm"
Note: See TracBrowser for help on using the repository browser.