diff options
author | Karl Berry <karl@freefriends.org> | 2016-06-20 22:22:26 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2016-06-20 22:22:26 +0000 |
commit | fb2abeda084752c0b5e4464f60631328e433c942 (patch) | |
tree | 3895dca41c45f194238ad646307923c1a4b4d15e /Master/texmf-dist/source/uplatex/base/Makefile | |
parent | 6c0dbc213f6b561b1bb6aa66ad342d6e7286deeb (diff) |
uplatex (20jun16)
git-svn-id: svn://tug.org/texlive/trunk@41505 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/uplatex/base/Makefile')
-rw-r--r-- | Master/texmf-dist/source/uplatex/base/Makefile | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/Master/texmf-dist/source/uplatex/base/Makefile b/Master/texmf-dist/source/uplatex/base/Makefile index b7e5b3a1b29..ee912165186 100644 --- a/Master/texmf-dist/source/uplatex/base/Makefile +++ b/Master/texmf-dist/source/uplatex/base/Makefile @@ -24,16 +24,12 @@ PLDOC_SRC = uplatex.dtx uplvers.dtx uplfonts.dtx \ ukinsoku.dtx ujclasses.dtx uplatex.ltx: $(PLFMT_SRC) - for x in $(PLFMT); do \ - if [ -e $$x ]; then rm $$x; fi \ - done + rm -f $(PLFMT) uplatex $(KANJI) uplfmt.ins rm uplfmt.log ujarticle.cls: $(PLCLS_SRC) - for x in $(PLCLS); do \ - if [ -e $$x ]; then rm $$x; fi \ - done + rm -f $(PLCLS) uplatex $(KANJI) uplcls.ins rm uplcls.log @@ -46,9 +42,7 @@ uplatex.pdf: $(INTRODOC_SRC) rm uplatex.glo uplatex.gls uplatex.ilg upldoc.pdf: $(PLDOC_SRC) - for x in upldoc.tex Xins.ins; do \ - if [ -e $$x ]; then rm $$x; fi \ - done + rm -f upldoc.tex Xins.ins uplatex $(KANJI) upldocs.ins uplatex $(KANJI) Xins.ins sh mkpldoc.sh @@ -59,8 +53,6 @@ upldoc.pdf: $(PLDOC_SRC) .PHONY: clean clean: - for x in $(PLFMT) $(PLCLS) \ + rm -f $(PLFMT) $(PLCLS) \ uplatex.pdf upldoc.pdf \ - upldoc.tex Xins.ins; do \ - if [ -e $$x ]; then rm $$x; fi \ - done + upldoc.tex Xins.ins |