"make uninstall" removes the symlinks bin/mcedit and bin/mcview.

This commit is contained in:
Roland Illig 2004-08-18 20:22:59 +00:00
parent 03976121d9
commit 226177cf11
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2004-08-18 Roland Illig <roland.illig@gmx.de>
* "make uninstall" removes the symlinks bin/mcedit and bin/mcview.
2004-08-17 Roland Illig <roland.illig@gmx.de>
* configure.ac: The GCC warning flags are only used in

View File

@ -83,3 +83,9 @@ install_mcview:
install_mcedit:
cd $(DESTDIR)$(bindir)/$(binprefix) && rm -f mcedit && $(LN_S) mc mcedit
uninstall-hook:
rm -f $(DESTDIR)$(bindir)/$(binprefix)/mcview
if USE_EDIT
rm -f $(DESTDIR)$(bindir)/$(binprefix)/mcedit
endif