blob: de0373a17d702b61f4619d3265e4c9e28c1164ef (
plain) (
tree)
|
|
.POSIX:
include ../common.mk
# Unfortunely meldrc.ini contains both (for us unless) state and settings,
# therefore we are making a copy instead of a link. Otherwise running meld
# could make changes to our dotfiles.
install:
mkdir -p -- ~/.config/meld
cp -- meldrc.ini ~/.config/meld/
uninstall:
-unlink -- ~/.config/meld/meldrc.ini
-rm -rf -- ~/.config/meld
.PHONY: install uninstall
|