diff options
author | William Carroll <wpcarro@gmail.com> | 2019-03-16T23·54+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2019-03-16T23·54+0000 |
commit | 2a70fdf5c2cb7012e5102dd3a3dd2ad23123dea7 (patch) | |
tree | 1bcc0a646b0d292e4b0d22d921e921ac10ed7edd /Makefile | |
parent | 44e46bbce2bd94ff6c9379152696619186ae248d (diff) |
Support uninstall; setup -> install
- support uninstall in Makefile - change setup script name to install
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 999fc266d931..088202925089 100644 --- a/Makefile +++ b/Makefile @@ -1,2 +1,5 @@ install: - source "${DOTFILES}/configs/setup" + source "${DOTFILES}/configs/install" + +uninstall: + source "${DOTFILES}/configs/uninstall" |