aboutsummaryrefslogtreecommitdiffstats
path: root/gcc/Makefile
blob: ce541b91da888fac45cf29fe92c6b99c36d111b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
.POSIX:

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

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

.PHONY: install uninstall