diff options
Diffstat (limited to 'Master/texmf-dist/source/fonts/lucold/makefd')
-rw-r--r-- | Master/texmf-dist/source/fonts/lucold/makefd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/fonts/lucold/makefd b/Master/texmf-dist/source/fonts/lucold/makefd new file mode 100644 index 00000000000..d38a08fae33 --- /dev/null +++ b/Master/texmf-dist/source/fonts/lucold/makefd @@ -0,0 +1,14 @@ +#! /bin/bash + +# $Id: makefd,v 1.1 1999/05/25 12:16:26 loreti Exp $ + +TEXMFMAIN=`kpsewhich --expand-var='$TEXMFMAIN'` + +cp $TEXMFMAIN/tex/latex/lucidabr/*t1hlh.fd . + +for infile in *.fd + do outfile="${infile%h.fd}os.fd" + awk >$outfile -f makefd.awk -v infile=$infile +done + +rm *t1hlh.fd |