forked from cloudmesh/classes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
141 lines (113 loc) · 3.66 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
UNAME := $(shell uname)
GIT_RECENT_TAG := $(shell git describe --abbrev=0 --tags)
BROWSER=firefox
ifeq ($(UNAME), Darwin)
BROWSER=open
endif
ifeq ($(UNAME), Linux)
BROWSER=xdg-open
endif
ifeq ($(UNAME), Windows)
BROWSER=/cygdrive/c/Program\ Files\ \(x86\)/Google/Chrome/Application/chrome.exe
endif
ifeq ($(UNAME), CYGWIN_NT-6.3)
BROWSER=/cygdrive/c/Program\ Files\ \(x86\)/Google/Chrome/Application/chrome.exe
endif
doc: convert
cd docs; make html
convert:
cd docs/source; ./convert.py
python bin/citations.py
all: doc pdf
echo done
notebooks:
cd docs/source/notebooks/; jupyter nbconvert --to rst facedetection.ipynb
pdf:
cd docs; make latex
cd docs/build/latex; pdflatex -interaction nonstopmode i524-notes
# cd docs/build/latex; bibtex Classes
cd docs/build/latex; pdflatex -interaction nonstopmode i524-notes
cd docs/build/latex; pdflatex -interaction nonstopmode i524-notes
cp docs/build/latex/i524-notes.pdf docs/build/html
bview:
cp docs/build/latex/book.pdf docs/build/html
$(BROWSER) docs/build/html/book.pdf
c:
cd docs; make latex
cp -r docs/book-template/* docs/build/latex
perl -ne 'print unless 1../begin{document}/' < docs/build/latex/i524-notes.tex > /tmp/content.tex
sed '/end{document}/ {$!N;d;}' /tmp/content.tex > docs/build/latex/content.tex
#cd docs/build/latex; pdflatex book
cd docs/build/latex; pdflatex book
b:
cd docs; make latex
cp -r docs/book-template/* docs/build/latex
perl -ne 'print unless 1../begin{document}/' < docs/build/latex/i524-notes.tex > /tmp/content.tex
sed '/end{document}/ {$!N;d;}' /tmp/content.tex > docs/build/latex/content.tex
#cd docs/build/latex; pdflatex book
cd docs/build/latex; pdflatex -interaction nonstopmode book
# cd docs/build/latex; biber book
cd docs/build/latex; pdflatex -interaction nonstopmode book
cd docs/build/latex; pdflatex -interaction nonstopmode book
cp docs/build/latex/book.pdf docs/build/html
pdfview:
$(BROWSER) docs/build/latex/i524-notes.pdf
watch:
watchmedo shell-command --patterns="Makefile;*.rst;*.md;*.csv;*.py" --recursive --command='make doc'
build: clean
touch docs/source/index.rst
bpublish: publish
cp docs/build/latex/book.pdf docs/build/html
publish:
ghp-import -n -p docs/build/html
view:
$(BROWSER) docs/build/html/index.html
log:
gitchangelog | fgrep -v ":dev:" | fgrep -v ":new:" > docs/source/changelog.rst
make
git commit -m "chg: dev: Update changelog" docs/source/changelog.rst
git push
notes:
make clean
rm -rf /tmp/notes-i524
mkdir -p /tmp/notes-i524
cp -r . /tmp/notes-i524
cp /tmp/notes-i524/docs/source/notes.rst /tmp/notes-i524/docs/source/index.rst
cd /tmp/notes-i524; echo "R" | make pdf || true
cp /tmp/notes-i524/docs/build/latex/Classes.pdf .
# FIXME: should be cloudmesh/classes
dockerimage: Dockerfile $(wildcard docker/*)
time docker build -t badi/cloudmesh_classes:latest .
# FIXME this should be cloudmesh/classes
dockerpublish: dockerimage
time docker push badi/cloudmesh_classes:latest
dockerrun:
time docker run \
-e HOST_UID=$(shell id -u) \
-e HOST_GID=$(shell id -g) \
-v $(shell pwd):/data \
-it \
--rm \
badi/cloudmesh_classes:latest \
make all
######################################################################
# CLEANING
######################################################################
clean:
rm -rf *.zip
rm -rf *.egg-info
rm -rf *.eggs
rm -rf docs/build
rm -rf build
rm -rf dist
find . -name '__pycache__' -delete
find . -name '*.pyc' -delete
rm -rf .tox
rm -f *.whl
######################################################################
# TAGGING
######################################################################
tag:
bin/new_version.sh
rmtag:
python setup.py rmtag