Skip to content

Commit b77f05d

Browse files
committed
Makefile: replace API target, use proper sub-make
Signed-off-by: Bert van Hall <bert.vanhall@gmx.de>
1 parent 26c930e commit b77f05d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ all:
44
@echo Available targets:
55
@echo clean - clean build directory
66
@echo test - run unittest
7-
@echo epydoc - run epydoc to create API documentation (python 2)
7+
@echo apidoc - run epdoc to create API documentation
88
@echo wininst - Windows installer for Python
99
@echo docs - build docs with ReST and Sphinx
1010
@echo wheel - build python wheel binary archive
@@ -17,15 +17,15 @@ clean:
1717
test:
1818
$(PYTHON) setup.py test -q
1919

20-
epydoc:
21-
epydoc.py -o api -v intelhex
20+
apidoc:
21+
pdoc -o docs/api --html -f intelhex
2222

2323
wininst:
2424
$(PYTHON) setup.py bdist_wininst -d.
2525

2626
docs:
2727
rst2html5.py docs/manual.txt docs/manual.html
28-
make -C docs/manual html
28+
$(MAKE) -C docs/manual html
2929

3030
wheel:
3131
$(PYTHON) -m pip wheel -w dist .

0 commit comments

Comments
 (0)