This manual lists all the Python classes and modules for Game Objects, Sensor bricks, Controllers etc. Missing: Actuator & Controller reference.
12 lines
139 B
Makefile
12 lines
139 B
Makefile
|
|
|
|
SOURCES=$(shell ls *.py)
|
|
TARGETS:=$(SOURCES:.py=.html)
|
|
PYDOC=/usr/lib/python2.2/pydoc.py
|
|
|
|
all: $(TARGETS)
|
|
|
|
%.html: %.py
|
|
$(PYDOC) -w $*
|
|
|