|
Revision 50812, 454 bytes
(checked in by madarche, 2 years ago)
|
- Added missing SVN properties.
|
- Property svn:eol-style set to
native
- Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 |
# NXLucene doc Makefile |
|---|
| 2 |
# $Id$ |
|---|
| 3 |
# to build api documentation you need python docutils and epydoc |
|---|
| 4 |
# |
|---|
| 5 |
.PHONY: all epydoc clean |
|---|
| 6 |
|
|---|
| 7 |
all: epydoc |
|---|
| 8 |
|
|---|
| 9 |
epydoc: |
|---|
| 10 |
export LD_LIBRARY_PATH='../src/PyLucene/gcj' |
|---|
| 11 |
export PYTHONPATH='../src/PyLucene/python' |
|---|
| 12 |
python build_doc --html -o api -n NXLucene -u http://nxlucene.nuxeo.org ../src/nxlucene/ |
|---|
| 13 |
|
|---|
| 14 |
clean: |
|---|
| 15 |
rm -rf ./api/* |
|---|
| 16 |
find . "(" -name "*~" -or -name ".#*" -or -name "#*#" -or -name "*.pyc" ")" -print0 | xargs -0 rm -f |
|---|