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

Makefile « freeze « python « intern - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3c344029b3eb1218e08b36c69a19ab6bca373f05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# $Id$
# This is the makefile for the bytecode freezing of all modules which
# the main file depends on (last argument in importer rule)

SRCDIR = ../modules

TARGETDIR = ../../../source/blender/bpython/frozen

PYFLAGS = -S -O

default: importer

importer: 
	python $(PYFLAGS) freeze.py -d -x os -x pprint -x Blender -I $(SRCDIR) -o $(TARGETDIR) $(SRCDIR)/VRMLmain.py