-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (16 loc) · 582 Bytes
/
Makefile
File metadata and controls
22 lines (16 loc) · 582 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
build:
mkdocs build
clean:
rm dist/*.whl dist/*.tar.gz
cssmin: cinder/css/base.css cinder/css/bootstrap-custom.css cinder/css/cinder.css cinder/css/highlight.css
uglifycss cinder/css/base.css > cinder/css/base.min.css
uglifycss cinder/css/bootstrap-custom.css > cinder/css/bootstrap-custom.min.css
uglifycss cinder/css/cinder.css > cinder/css/cinder.min.css
uglifycss cinder/css/highlight.css > cinder/css/highlight.min.css
dist:
python3 setup.py sdist bdist_wheel
push:
twine upload dist/*.tar.gz dist/*.whl
serve:
mkdocs serve
.PHONY: build clean cssmin dist serve