File: Makefile

package info (click to toggle)
transforms3d 0.4.2%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,996 kB
  • sloc: python: 4,069; makefile: 103; sh: 25
file content (13 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
git-clean:
	git clean -fxd

html:
	cd doc && make html

gh-pages: git-clean html
	git co gh-pages
	git rm -r .
	git checkout HEAD -- .gitignore README.md .nojekyll
	cp -r doc/_build/html/* . # your sphinx build directory
	git stage .
	@echo 'Commit and push when ready or git reset --hard && git checkout master to revert'