home *** CD-ROM | disk | FTP | other *** search
- |#!/bin/sh
- |# Convert TeX to C.
- |
- |cat ../lib/common.defines ../lib/texmf.defines tex.p \
- | | ../web2c/web2c -t -htexmf.h \
- | | ../web2c/fixwrites -t \
- | | ../web2c/regfix \
- | | ../web2c/splitup
- |
- |sync
- |
- |cat coerce.h fixcoerce.h > xcoerce.h
- |mv xcoerce.h coerce.h
- |
- |RISC OS:
- echo Concatenating...
- fcat ^.lib.common_def ^.lib.texmf_def ^.lib.riscos_def tex.p >temp
- echo web2c...
- web2c -t -hh.texmf <temp >temp2
- echo fixwrites...
- fixwrites -t <temp2 >temp
- echo regfix...
- regfix <temp >temp2
- echo splitup...
- splitup <temp2
- remove temp2
- remove temp
-