12 lines
228 B
Makefile
12 lines
228 B
Makefile
|
|
||
|
all: html
|
||
|
|
||
|
html:
|
||
|
@echo ----------------
|
||
|
@echo Generating epydoc html code documentation.
|
||
|
@echo See epydoc-html.log for epydoc log.
|
||
|
@echo ----------------
|
||
|
epydoc --html -o html/ ../fluents ../workflows 2> epydoc-html.log
|
||
|
|
||
|
|