1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-01 15:57:45 +02:00
toxic/cfg/targets/uninstall.mk

25 lines
605 B
Makefile
Raw Normal View History

2015-04-03 13:04:28 +02:00
# Uninstall target
uninstall:
@echo "Removing toxic executable"
@rm -f $(abspath $(DESTDIR)/$(BINDIR)/toxic)
@echo "Removing desktop file"
@rm -f $(abspath $(DESTDIR)/$(APPDIR)/$(DESKFILE))
@echo "Removing data files"
@for f in $(DATAFILES) ; do \
rm -f $(abspath $(DESTDIR)/$(DATADIR)/$$f) ;\
done
@for f in $(SNDFILES) ; do \
rm -f $(abspath $(DESTDIR)/$(DATADIR)/sounds/$$f) ;\
done
@echo "Removing man pages"
@for f in $(MANFILES) ; do \
2018-10-02 23:31:14 +02:00
section=$(abspath $(DESTDIR)/$(MANDIR))/man`echo $${f##*.}` ;\
2015-04-03 13:04:28 +02:00
file=$$section/$$f ;\
rm -f $$file $$file.gz ;\
done
.PHONY: uninstall