blob: a83bb1c812df536c6e3fc9f7a8fa0293f2a7a719 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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
|