forked from jaseemabid/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
31 lines (25 loc) · 843 Bytes
/
Makefile
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
27
28
29
30
31
#
# _ _ _ _ __ _ _
# (_) ( ) | | | | / _(_) |
# _ __ _ ___ ___ ___ _ __ ___ |/ ___ __| | ___ | |_| |_ _| | ___ ___
# | |/ _` / __|/ _ \/ _ \ '_ ` _ \ / __| / _` |/ _ \| __| _| | |/ _ \/ __|
# | | (_| \__ \ __/ __/ | | | | | \__ \ | (_| | (_) | |_| | | | | __/\__ \
# | |\__,_|___/\___|\___|_| |_| |_| |___/ \__,_|\___/ \__|_| |_|_|\___||___/
# _/ |
# |__/
RM = /bin/rm -r
LN = /bin/ln -r
CP = /bin/cp -r
all:
@echo ""
@echo "usage:"
@echo ""
@echo "* make dotfiles -- to install dotfiles"
@echo "* make clean -- to clean up dotfiles"
@echo ""
dotfiles:
$(CP) bash_aliases ~/.bash_aliases
$(CP) bash_colors ~/.bash_colors
$(CP) bash_logout ~/.bash_logout
$(CP) bashrc ~/.bashrc
.PHONY : all dotfiles clean