mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-09-29 15:31:08 -04:00
16 lines
295 B
Makefile
16 lines
295 B
Makefile
APIDOCS=/var/www/libprs500.kovidgoyal.net/htdocs/apidocs
|
|
|
|
all: doc sdist egg
|
|
|
|
sdist:
|
|
python setup.py sdist --formats=gztar,zip
|
|
|
|
egg:
|
|
python setup.py bdist_egg
|
|
|
|
doc:
|
|
epydoc --config epydoc.conf
|
|
cp -r docs/html ${APIDOCS}/
|
|
epydoc -v --config epydoc-pdf.conf
|
|
cp docs/pdf/api.pdf ${APIDOCS}/
|