Florian Eggenburger). Full instructions are in doc/README.windows-gcc. Main differences from Florian's patch: - the 'lib' dir should now be the same level as the 'blender' dir (rather than being a subdir of 'blender'). This is consistent with the other platforms that bf-blender supports (tuhopuu will also adopt this convention hopefully soon). - the script 'free_windows-env.mk' is no longer needed ... see the docs about how this is overcome (again, tuhopuu will hopefully also follow this route soon). - the dlltool dir has it's own Makefile that builds all of the needed stub libraries from the dll's in cvs.
40 lines
903 B
Makefile
40 lines
903 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
|
|
|
|
ifeq ($(FREE_WINDOWS),true)
|
|
export NAN_PYTHON_BINARY = python
|
|
endif
|
|
|
|
PYFLAGS=-S -O
|
|
|
|
default: importer
|
|
|
|
# fake all and debug targets
|
|
all debug: default
|
|
|
|
install: importer
|
|
|
|
importer:
|
|
ifeq ($(FREE_WINDOWS),true)
|
|
cp $(NAN_PYTHON)/lib/python22.dll .
|
|
dlltool.exe -v --output-lib $(NAN_PYTHON)/lib/freepy.a \
|
|
--input-def $(NANBLENDERHOME)/dlltool/python.def \
|
|
--dllname python22.dll
|
|
ranlib $(NAN_PYTHON)/lib/freepy.a
|
|
rm ./python22.dll
|
|
@[ -d $(TARGETDIR) ] || mkdir -p $(TARGETDIR)
|
|
endif
|
|
$(NAN_PYTHON_BINARY) $(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
|
|
|