diff options
author | Takuji Tanaka <KXD02663@nifty.ne.jp> | 2016-02-09 11:02:48 +0000 |
---|---|---|
committer | Takuji Tanaka <KXD02663@nifty.ne.jp> | 2016-02-09 11:02:48 +0000 |
commit | adec059e95b8e5728d8fb2d8420c5e928812c282 (patch) | |
tree | 28d38c44042fea2befbccbdd71063c801518d298 /Master/texmf-dist/doc/support/upmendex/samples/Makefile | |
parent | b0bdd8cd0fed764f189d773b0b0f69d25415a8f5 (diff) |
texk/upmendex: upmendex 0.50
git-svn-id: svn://tug.org/texlive/trunk@39638 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/doc/support/upmendex/samples/Makefile')
-rw-r--r-- | Master/texmf-dist/doc/support/upmendex/samples/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Master/texmf-dist/doc/support/upmendex/samples/Makefile b/Master/texmf-dist/doc/support/upmendex/samples/Makefile new file mode 100644 index 00000000000..7cd082cbb89 --- /dev/null +++ b/Master/texmf-dist/doc/support/upmendex/samples/Makefile @@ -0,0 +1,19 @@ +UPMENDEX = upmendex + +all: scripts styles + +scripts: + for scr in french german greek russian korean; do \ + $(UPMENDEX) $$scr -s mdxsty00.ist ; \ + done + +styles: + for num in 00 01 02; do \ + $(UPMENDEX) multi.idx -s mdxsty$$num.ist -o multi_$$num.ind ; \ + done + +compare: + for ind in $(wildcard *.ind); do \ + diff -qs $$ind output/$$ind ; \ + done + |