-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (20 loc) · 660 Bytes
/
Makefile
File metadata and controls
26 lines (20 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
options:
@echo Deployment options:
@echo "HOME = ${HOME}"
custom:
@echo Linking repository to user .bash_profile
@mv ${HOME}/.bash_profile ${HOME}/.bash_profile.bak
@ln -s `pwd`/bash_profile ${HOME}/.bash_profile
bash -c "source ${HOME}/.bash_profile"
@echo Done. To change settings use this repository.
link:
@echo Linking repository to user .bash_profile
@ln -s `pwd`/bash_profile ${HOME}/.bash_profile
bash -c "source ${HOME}/.bash_profile"
@echo Done. To change settings use this repository.
reload:
@echo Reloading user .bash_profile
bash -c "source ${HOME}/.bash_profile"
@echo Done.
# fc-cache
.PHONY: options custom link reload all