Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « PyDoc « gameengine « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7861894ddecb33fb9a085022a9ab727229513ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13


SOURCES=$(shell ls *.py)
TARGETS:=$(SOURCES:.py=.html)
PYDOC=/usr/lib/python2.2/pydoc.py

all: $(SOURCES)
	epydoc -o BPY_GE_236 --url "http://www.blender.org" -t GameLogic.py \
		-n "Blender GameEngine" --no-private --no-frames \
		$(shell ls *.py )
		
clean:
	rm *.html