forked from dataiap/dataiap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
12 lines (11 loc) · 933 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
all: labs
labs: day0/README.md day1/README.md day2/README.md day3/regression.py day3/hypothesis_testing.py
cp -r ./day0 ./day1 ./day2 ./day3 ./day4 /tmp/dataiap_html/
python resources/markdown/markdown_headers.py day0/README.md /tmp/dataiap_html/day0/index.html
python resources/markdown/markdown_headers.py day1/README.md /tmp/dataiap_html/day1/index.html
python resources/markdown/markdown_headers.py day2/README.md /tmp/dataiap_html/day2/index.html
python resources/markdown/markdown_headers.py day3/README.md /tmp/dataiap_html/day3/index.html
python resources/markdown/markdown_headers.py day4/README.md /tmp/dataiap_html/day4/index.html
python resources/hacco/hacco.py day3/regression.py -d /tmp/dataiap_html/day3/ #/tmp/dataiap_html
python resources/hacco/hacco.py day3/hypothesis_testing.py -d /tmp/dataiap_html/day3/ #/tmp/dataiap_html
echo "\n\nnow do: \n\tgit checkout gh-pages\n\tcp -r /tmp/dataiap_html/* .\n"