- files are now compiled in a different location. So the include path

to Python.h had to be adjusted
This commit is contained in:
Frank van Beek 2003-01-26 13:12:29 +00:00
parent 4eead02134
commit 0853bef1e2

@ -28,7 +28,7 @@ def makemakefile(outfp, makevars, files, target):
outfp.write("\n\ninclude nan_definitions.mk\n")
outfp.write("ifeq ($(OS),windows)\n")
outfp.write(" CC=$(NANBLENDERHOME)/source/tools/cygwin/cl_wrapper.pl\n")
outfp.write(" CFLAGS=-I../../../../lib/windows/python/include/python2.2/ $(OPT)\n")
outfp.write(" CFLAGS=-I../../../../../lib/windows/python/include/python2.2/ $(OPT)\n")
outfp.write("endif\n")
outfp.write("\nall: %s\n\n" % libtarget)