diff options
Diffstat (limited to 'Master/texmf-dist/source/generic/hyphenex/GNUmakefile')
-rw-r--r-- | Master/texmf-dist/source/generic/hyphenex/GNUmakefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Master/texmf-dist/source/generic/hyphenex/GNUmakefile b/Master/texmf-dist/source/generic/hyphenex/GNUmakefile new file mode 100644 index 00000000000..a83bb1c812d --- /dev/null +++ b/Master/texmf-dist/source/generic/hyphenex/GNUmakefile @@ -0,0 +1,20 @@ +# Public domain. + +check: compare test.tex + tex '\nonstopmode\input test.tex' + +compare: pl-ushyphex.tex sh-ushyphex.tex + diff $^ + +pl-ushyphex.tex: hyphenex.pl tb0hyf.tex + perl $^ >$@ || rm -f $@ + +sh-ushyphex.tex: hyphenex.sh tb0hyf.tex + sh $< <tb0hyf.tex >$@ || rm -f $@ + +ushyphex.tex: pl-ushyphex.tex + ln $< $@ + +dist: ushyphex.tex + rm -f dist.zip + zip dist.zip README GNUmakefile $< hyphenex.?? tb0hyf.tex test.tex |