forked from buildbot/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move apidoc creation to a toplevel dir with makefiles
- Loading branch information
Dustin J. Mitchell
committed
Jul 17, 2010
1 parent
7b16acb
commit e40a332
Showing
6 changed files
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,3 +34,5 @@ master/docs/latest | |
twisted/plugins/dropin.cache | ||
.coverage | ||
coverage-html | ||
apidocs/reference | ||
apidocs/reference.tgz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.PHONY: all reference cleanpyc | ||
|
||
all: reference.tgz | ||
|
||
cleanpyc: | ||
cd .. && find master slave -name '*.pyc' -exec rm \{} \; || exit 1 | ||
|
||
reference: cleanpyc | ||
rm -rf reference | ||
cd .. && python apidocs/epyrun -o apidocs/reference \ | ||
--exclude="buildbot\\.test" --exclude="buildslave\\.test" \ | ||
buildbot buildslave | ||
|
||
reference.tgz: reference | ||
tar -zcf reference.tgz reference |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters