forked from jasongrout/jupyterlab-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
28 lines (19 loc) · 765 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
.PHONY: download PythonDataScienceHandbook Urban-Data-Challenge altair altair-examples
.PHONY: demo createfiles
demo: download createfiles
createfiles: move_this_file move_it_here
download: demofiles PythonDataScienceHandbook Urban-Data-Challenge altair
PythonDataScienceHandbook: demofiles
cd demofiles && git clone https://github.com/jakevdp/PythonDataScienceHandbook.git
Urban-Data-Challenge: demofiles
cd demofiles && git clone https://github.com/swissnexSF/Urban-Data-Challenge.git
altair: demofiles
cd demofiles && git clone https://github.com/altair-viz/altair.git
move_this_file: demofiles
cd demofiles && touch move_this_file.txt
move_it_here: demofiles
cd demofiles && mkdir move_it_here
demofiles:
mkdir demofiles
clean:
rm -rf demofiles