forked from plotly/plotly.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmakefile
66 lines (55 loc) · 1.98 KB
/
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
57
58
59
60
61
62
63
64
65
66
all : readme
readme :
@echo ""
@less make_instructions.txt
setup_subs :
@echo "Deleting old submodule locations, if they exist"
rm -rf plotly/graph_reference
rm -rf plotly/mplexporter
rm -rf plotly/chunked_requests
rm -rf plotly/plotly/chunked_requests
rm -rf plotly/matplotlylib/mplexporter
@echo "Initializing submodules listed in project"
git submodule init
@echo "Updating submodules to their respective commits"
git submodule update
make sync_subs
install : sync_subs
@echo ""
@echo "Installing Python API with make"
python setup.py install
sync_subs : sync_mpl sync_chunked sync_refs
@echo ""
@echo "Submodules synced"
pull_subs : pull_mpl pull_chunked pull_refs
@echo ""
@echo "Submodules pulled"
sync_mpl : submodules/mplexporter
@echo ""
@echo "Syncing mplexporter directories"
rsync -r submodules/mplexporter/mplexporter plotly/matplotlylib/
sync_chunked : submodules/chunked_requests
@echo ""
@echo "Syncing chunked_requests directories"
rsync -r submodules/chunked_requests/chunked_requests plotly/plotly/
sync_refs : submodules/graph_reference
@echo ""
@echo "Syncing graph_reference directories"
rm -rf plotly/graph_reference
mkdir plotly/graph_reference
cp submodules/graph_reference/graph_objs/python/graph_objs_meta.json plotly/graph_reference
cp submodules/graph_reference/graph_objs/python/KEY_TO_NAME.json plotly/graph_reference
cp submodules/graph_reference/graph_objs/python/NAME_TO_KEY.json plotly/graph_reference
cp submodules/graph_reference/graph_objs/python/OBJ_MAP.json plotly/graph_reference
pull_refs : submodules/graph_reference
@echo ""
@echo "Pulling down updates from graph_reference"
cd submodules/graph_reference; git pull origin master
pull_mpl : submodules/mplexporter
@echo ""
@echo "Pulling down updates from mplexporter"
cd submodules/mplexporter; git pull origin master
pull_chunked : submodules/chunked_requests
@echo ""
@echo "Pulling down updates from chunked_requests"
cd submodules/chunked_requests; git pull origin master