This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/intern/python/freeze/Makefile

20 lines
395 B
Makefile
Raw Normal View History

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-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-30 15:34:57 +00:00
clean:
rm *.pyo