File: Makefile

package info (click to toggle)
test-check-clojure 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 544 kB
  • sloc: xml: 46; makefile: 38; sh: 22; javascript: 8
file content (20 lines) | stat: -rw-r--r-- 349 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
.PHONY: pages docs

##
## Doc targets
##

docs:
	lein doc

pages: docs
	rm -rf /tmp/org.clojure-test.check-docs
	mkdir -p /tmp/org.clojure-test.check-docs
	cp -R doc/ /tmp/org.clojure-test.check-docs
	git checkout gh-pages
	cp -R /tmp/org.clojure-test.check-docs/* .
	git add .
	git add -u
	git commit
	git push origin gh-pages
	git checkout master