diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-26 20:29:26 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-26 20:29:26 +0200 |
commit | adb3ff3258884fec6d3718792d960bf63e5624f9 (patch) | |
tree | 10011e7f8ad8d445dbcabd73b5045655e30214dc /gcc/Makefile | |
parent | Add touch-all alias (diff) | |
download | dotfiles-adb3ff3258884fec6d3718792d960bf63e5624f9.tar.gz dotfiles-adb3ff3258884fec6d3718792d960bf63e5624f9.tar.bz2 dotfiles-adb3ff3258884fec6d3718792d960bf63e5624f9.tar.xz |
Add gcc-{,less-}extreme{,-not-pedantic}
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | gcc/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/Makefile b/gcc/Makefile index 2bd3e49..f114403 100644 --- a/gcc/Makefile +++ b/gcc/Makefile @@ -5,9 +5,18 @@ install: mkdir -p -- ~/.config/profile.d test ! -d ~/.config/profile.d/gcc ln -sf -- ~/.dotfiles/gcc/user-profile ~/.config/profile.d/gcc + mkdir -p -- ~/.local/bin + ln -sf -- ~/.dotfiles/gcc/gcc-extreme ~/.local/bin/ + ln -sf -- ~/.dotfiles/gcc/gcc-extreme-not-pedantic ~/.local/bin/ + ln -sf -- ~/.dotfiles/gcc/gcc-less-extreme ~/.local/bin/ + ln -sf -- ~/.dotfiles/gcc/gcc-less-extreme-not-pedantic ~/.local/bin/ uninstall: -unlink -- ~/.config/profile.d/gcc -rmdir -- ~/.config/profile.d + -unlink -- ~/.local/bin/ + -unlink -- ~/.local/bin/ + -unlink -- ~/.local/bin/ + -unlink -- ~/.local/bin/ .PHONY: install uninstall |