aboutsummaryrefslogtreecommitdiffstats
path: root/gcc/Makefile
blob: 2bd3e49af6ab3069857829ee1b0e3698c0367a2a (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/gcc
	ln -sf -- ~/.dotfiles/gcc/user-profile ~/.config/profile.d/gcc

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

.PHONY: install uninstall