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
Hans Lambermont 99a1f599d8 fix clean target
2003-02-09 22:01:05 +00:00

25 lines
511 B
Makefile

# $Id$
# This is the makefile for the bytecode freezing of all modules which
# the main file depends on (last argument in importer rule)
include nan_definitions.mk
SRCDIR = ../modules
TARGETDIR = $(OCGDIR)/blender/bpython/frozen
PYFLAGS = -S -O
default: importer
install: importer
importer:
@[ -d $(TARGETDIR) ] || mkdir -p $(TARGETDIR)
python $(PYFLAGS) freeze.py -d -x os -x pprint -x string -x copy -I $(SRCDIR) -o $(TARGETDIR) $(SRCDIR)/VRMLmain.py
$(MAKE) -C $(TARGETDIR)
clean:
rm -f *.pyo