diff options
author | Norbert Preining <norbert@preining.info> | 2020-05-28 03:03:21 +0000 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2020-05-28 03:03:21 +0000 |
commit | 745892fbddea56040139108277e728b53fd8fc11 (patch) | |
tree | 15e55e299b38fccdabce8364f1fbf4f02ef37994 /support/latexdiff/Makefile | |
parent | 195ca7e0c377d83455867bdd8e409d4e1cf024ea (diff) |
CTAN sync 202005280303
Diffstat (limited to 'support/latexdiff/Makefile')
-rw-r--r-- | support/latexdiff/Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/support/latexdiff/Makefile b/support/latexdiff/Makefile index 143ddd213c..cc5eb5ab79 100644 --- a/support/latexdiff/Makefile +++ b/support/latexdiff/Makefile @@ -12,7 +12,7 @@ default: @echo " of the PERL package Algorithm::Diff available from " @echo " the PERL archive www.cpan.org)" @echo " " - @echo "To install fast version (using UNIX diff) type: make install fast " + @echo "To install fast version (using UNIX diff) type: make install-fast " @echo " " @echo "To install the version which uses the system Algorithm::Diff package type: make install-ext" @echo " " @@ -62,3 +62,13 @@ test-fast: @echo "latexdiff example/example-draft.tex example/example-rev.tex (stand-alone version)" ./latexdiff-fast -V example/example-draft.tex example/example-rev.tex > example/example-diff.tex @echo "Difference file created: example/example-diff.tex" + +uninstall: +# -f is needed to ignore missing files + @rm -f $(INSTALLPATH)/bin/latexdiff{,-cvs,-git,-hg,-rcs,-so,-svn,-vc,-fast} $(INSTALLPATH)/bin/latexrevise + @rm -f $(INSTALLPATH)/man/man1/latex{diff{,-vc},revise}.1 +# maybe remove potentially empty directories + @rmdir --ignore-fail-on-non-empty $(INSTALLPATH)/bin + @rmdir --ignore-fail-on-non-empty $(INSTALLPATH)/man/man1 + @rmdir --ignore-fail-on-non-empty $(INSTALLPATH)/man + @rmdir --ignore-fail-on-non-empty $(INSTALLPATH) |