2004-01-05 00:06:11 +00:00
|
|
|
#
|
2007-12-17 20:21:06 +00:00
|
|
|
# $Id: Makefile 11904 2007-08-31 16:16:33Z sirdude $
|
2004-01-05 00:06:11 +00:00
|
|
|
#
|
2007-12-24 18:27:28 +00:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
2004-01-05 00:06:11 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
2007-12-24 18:27:28 +00:00
|
|
|
# of the License, or (at your option) any later version.
|
2004-01-05 00:06:11 +00:00
|
|
|
#
|
2003-05-29 16:29:57 +00:00
|
|
|
# This program is distributed in the hope that it will be useful,
|
2004-01-05 00:06:11 +00:00
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
|
# along with this program; if not, write to the Free Software Foundation,
|
|
|
|
|
# Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
#
|
|
|
|
|
# The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
|
|
|
|
|
# All rights reserved.
|
|
|
|
|
#
|
|
|
|
|
# The Original Code is: all of this file.
|
|
|
|
|
#
|
|
|
|
|
# Contributor(s): none yet.
|
|
|
|
|
#
|
2007-12-24 18:27:28 +00:00
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
2004-01-05 00:06:11 +00:00
|
|
|
#
|
|
|
|
|
#
|
|
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
LIBNAME = windowmanager
|
|
|
|
|
DIR = $(OCGDIR)/blender/$(LIBNAME)
|
2004-01-05 00:06:11 +00:00
|
|
|
|
|
|
|
|
include nan_compile.mk
|
|
|
|
|
|
|
|
|
|
CFLAGS += $(LEVEL_1_C_WARNINGS)
|
|
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
# OpenGL and Python
|
Merge of trunk into blender 2.5:
svn merge https://svn.blender.org/svnroot/bf-blender/trunk/blender -r12987:17416
Issues:
* GHOST/X11 had conflicting changes. Some code was added in 2.5, which was
later added in trunk also, but reverted partially, specifically revision
16683. I have left out this reversion in the 2.5 branch since I think it is
needed there.
http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=16683
* Scons had various conflicting changes, I decided to go with trunk version
for everything except priorities and some library renaming.
* In creator.c, there were various fixes and fixes for fixes related to the -w
-W and -p options. In 2.5 -w and -W is not coded yet, and -p is done
differently. Since this is changed so much, and I don't think those fixes
would be needed in 2.5, I've left them out.
* Also in creator.c: there was code for a python bugfix where the screen was not
initialized when running with -P. The code that initializes the screen there
I had to disable, that can't work in 2.5 anymore but left it commented as a
reminder.
Further I had to disable some new function calls. using src/ and python/, as
was done already in this branch, disabled function calls:
* bpath.c: error reporting
* BME_conversions.c: editmesh conversion functions.
* SHD_dynamic: disabled almost completely, there is no python/.
* KX_PythonInit.cpp and Ketsji/ build files: Mathutils is not there, disabled.
* text.c: clipboard copy call.
* object.c: OB_SUPPORT_MATERIAL.
* DerivedMesh.c and subsurf_ccg, stipple_quarttone.
Still to be done:
* Go over files and functions that were moved to a different location but could
still use changes that were done in trunk.
2008-11-12 21:16:53 +00:00
|
|
|
CPPFLAGS += -I$(NAN_GLEW)/include
|
2007-12-24 18:27:28 +00:00
|
|
|
CPPFLAGS += $(OGL_CPPFLAGS)
|
|
|
|
|
CPPFLAGS += -I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION)
|
2004-01-05 00:06:11 +00:00
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
# PreProcessor stuff
|
|
|
|
|
|
|
|
|
|
CPPFLAGS += -I$(NAN_GHOST)/include
|
|
|
|
|
CPPFLAGS += -I$(NAN_BMFONT)/include
|
|
|
|
|
CPPFLAGS += -I$(NAN_ELBEEM)/include
|
|
|
|
|
CPPFLAGS += -I$(NAN_SOUNDSYSTEM)/include $(NAN_SDLCFLAGS)
|
|
|
|
|
|
|
|
|
|
# modules
|
|
|
|
|
CPPFLAGS += -I../../editors/include
|
|
|
|
|
CPPFLAGS += -I../../python
|
2004-01-05 00:06:11 +00:00
|
|
|
CPPFLAGS += -I../../makesdna
|
2008-11-21 19:14:38 +00:00
|
|
|
CPPFLAGS += -I../../makesrna
|
2004-01-05 00:06:11 +00:00
|
|
|
CPPFLAGS += -I../../blenlib
|
2007-12-24 18:27:28 +00:00
|
|
|
CPPFLAGS += -I../../blenkernel
|
|
|
|
|
CPPFLAGS += -I../../nodes
|
|
|
|
|
CPPFLAGS += -I../../imbuf
|
2004-04-24 20:04:37 +00:00
|
|
|
CPPFLAGS += -I../../blenloader
|
2008-12-19 12:14:58 +00:00
|
|
|
CPPFLAGS += -I../../gpu
|
2004-03-14 02:06:57 +00:00
|
|
|
CPPFLAGS += -I../../render/extern/include
|
2007-12-24 18:27:28 +00:00
|
|
|
CPPFLAGS += -I../../ftfont
|
2004-07-26 02:13:42 +00:00
|
|
|
CPPFLAGS += -I../../radiosity/extern/include
|
2007-12-24 18:27:28 +00:00
|
|
|
CPPFLAGS += -I../../../kernel/gen_system
|
2009-01-29 05:19:27 +00:00
|
|
|
CPPFLAGS += -I../../blenfont
|
2007-12-24 18:27:28 +00:00
|
|
|
|
|
|
|
|
# path to the guarded memory allocator
|
|
|
|
|
CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
|
|
|
|
|
CPPFLAGS += -I$(NAN_MEMUTIL)/include
|
|
|
|
|
|
|
|
|
|
ifeq ($(INTERNATIONAL), true)
|
|
|
|
|
CPPFLAGS += -DINTERNATIONAL
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifeq ($(WITH_QUICKTIME),true)
|
|
|
|
|
CPPFLAGS += -I../quicktime
|
|
|
|
|
CPPFLAGS += -DWITH_QUICKTIME
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
ifeq ($(OS),linux)
|
|
|
|
|
ifeq ($(CPU),alpha)
|
|
|
|
|
CPPFLAGS += -I$(NAN_MESA)/include
|
|
|
|
|
endif
|
|
|
|
|
ifeq ($(CPU),i386)
|
|
|
|
|
CPPFLAGS += -I$(NAN_MESA)/include
|
|
|
|
|
endif
|
|
|
|
|
ifeq ($(CPU),powerpc)
|
|
|
|
|
CPPFLAGS += -I/usr/src/MesaCVS/include
|
|
|
|
|
endif
|
|
|
|
|
endif
|
2006-12-12 01:30:24 +00:00
|
|
|
|
2007-12-24 18:27:28 +00:00
|
|
|
# path to our own headerfiles
|
|
|
|
|
CPPFLAGS += -I..
|