21 lines
429 B
Makefile
21 lines
429 B
Makefile
|
|
DOC_DIR=/home/einarr/src/fluents-8/debian/fluents/usr/share/doc/laydi
|
|
|
|
all: html
|
|
|
|
html:
|
|
@echo ----------------
|
|
@echo Generating epydoc html code documentation.
|
|
@echo See epydoc-html.log for epydoc log.
|
|
@echo ----------------
|
|
epydoc --html --inheritance listed -o html/ ../fluents 2> epydoc-html.log
|
|
|
|
install:
|
|
find html/ -type f -exec install -m 644 -D '{}' ${DOC_DIR}/'{}' \;
|
|
|
|
clean:
|
|
-rm -rf html
|
|
-rm epydoc-html.log
|
|
|
|
|