aboutsummaryrefslogtreecommitdiffstats
path: root/cvs/Makefile
blob: 3ca0b4ba379081dc242b9348716d5aecf7beb9c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
.POSIX:
include ../common.mk

install:
	mkdir -p -- ~/.config/profile.d
	test ! -d ~/.config/profile.d/cvs
	ln -sf -- ~/.dotfiles/cvs/user-profile ~/.config/profile.d/cvs

uninstall:
	-unlink -- ~/.config/profile.d/cvs
	-rmdir -- ~/.config/profile.d

.PHONY: install uninstall