-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
56 lines (50 loc) · 909 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
SOURCE=allup \
bibtex2yaml.rb \
cafe_winner.py \
check_export.sh \
check_speed.py \
check_speed.sh \
clean_openwith_db.sh \
cls \
driving.py \
driving.sh \
dropbox.py \
events2ics \
fitscat \
fix_whitespace \
get_app_sales.py \
get_app_sales.sh \
http-challenge \
imgcat \
init_anaconda.sh \
jenkins_statusboard \
make_download \
makeappicons.sh \
menu.py \
moves.py \
moves.sh \
moves_refreshtoken.py \
nb2md \
sms \
svn_add_unknown.sh \
textbelt \
update_book_sales.py \
update_software.sh \
update_status.py \
watchdir \
wp.py \
wp.sh
DARWIN_SOURCE=backedup.sh \
battery_check.sh \
getudid.sh \
hex \
reindex_mailapp.sh \
video2huffduffer
PREFIX=$(HOME)/bin
.PHONY: all install
all:
@echo "Nothing to do, use install target to install scripts"
install: $(SOURCE)
@echo "Installing scripts to $(PREFIX)..."
cp $(SOURCE) $(PREFIX)
if [ `uname` == 'Darwin' ]; then cp $(DARWIN_SOURCE) $(PREFIX); fi