2002-11-30 15:34:57 +00:00
|
|
|
# $Id$
|
|
|
|
|
# This is the makefile for the bytecode freezing of all modules which
|
|
|
|
|
# the main file depends on (last argument in importer rule)
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2002-11-30 15:34:57 +00:00
|
|
|
SRCDIR = ../modules
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2002-11-30 15:34:57 +00:00
|
|
|
TARGETDIR = ../../../source/blender/bpython/frozen
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2002-11-30 15:34:57 +00:00
|
|
|
PYFLAGS = -S -O
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2002-11-30 15:34:57 +00:00
|
|
|
default: importer
|
2002-10-12 11:37:38 +00:00
|
|
|
|
2002-11-30 15:34:57 +00:00
|
|
|
install: importer
|
2002-11-06 21:19:23 +00:00
|
|
|
|
2002-11-30 15:34:57 +00:00
|
|
|
importer:
|
|
|
|
|
python $(PYFLAGS) freeze.py -d -x os -x pprint -I $(SRCDIR) -o $(TARGETDIR) $(SRCDIR)/VRMLmain.py
|
2002-11-06 21:19:23 +00:00
|
|
|
|
2002-11-30 15:34:57 +00:00
|
|
|
clean:
|
|
|
|
|
rm *.pyo
|