[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [21614] branches/blender2.5/blender/source : Add Makefile build support for Console Space Type (added in r21611).

gsr b3d gsr.b3d at infernal-iceberg.com
Thu Jul 16 05:11:22 CEST 2009


Revision: 21614
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=21614
Author:   gsrb3d
Date:     2009-07-16 05:11:21 +0200 (Thu, 16 Jul 2009)

Log Message:
-----------
Add Makefile build support for Console Space Type (added in r21611).

Modified Paths:
--------------
    branches/blender2.5/blender/source/Makefile
    branches/blender2.5/blender/source/blender/editors/Makefile

Added Paths:
-----------
    branches/blender2.5/blender/source/blender/editors/space_console/Makefile

Modified: branches/blender2.5/blender/source/Makefile
===================================================================
--- branches/blender2.5/blender/source/Makefile	2009-07-16 02:29:49 UTC (rev 21613)
+++ branches/blender2.5/blender/source/Makefile	2009-07-16 03:11:21 UTC (rev 21614)
@@ -240,6 +240,7 @@
 PULIB += $(OCGDIR)/blender/ed_image/$(DEBUG_DIR)libed_image.a
 PULIB += $(OCGDIR)/blender/ed_uvedit/$(DEBUG_DIR)libed_uvedit.a
 PULIB += $(OCGDIR)/blender/ed_screen/$(DEBUG_DIR)libed_screen.a
+PULIB += $(OCGDIR)/blender/ed_console/$(DEBUG_DIR)libed_console.a
 PULIB += $(OCGDIR)/blender/windowmanager/$(DEBUG_DIR)libwindowmanager.a
 PULIB += $(OCGDIR)/blender/python/$(DEBUG_DIR)libpython.a
 PULIB += $(OCGDIR)/blender/makesrna/$(DEBUG_DIR)librna.a

Modified: branches/blender2.5/blender/source/blender/editors/Makefile
===================================================================
--- branches/blender2.5/blender/source/blender/editors/Makefile	2009-07-16 02:29:49 UTC (rev 21613)
+++ branches/blender2.5/blender/source/blender/editors/Makefile	2009-07-16 03:11:21 UTC (rev 21614)
@@ -1,5 +1,7 @@
+# -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*-
+# vim: tabstop=8
 #
-# $Id: Makefile
+# $Id$
 #
 # ***** BEGIN GPL LICENSE BLOCK *****
 #
@@ -29,6 +31,38 @@
 # Bounces make to subdirectories.
 
 SOURCEDIR = source/blender/editors
-DIRS = armature mesh animation object sculpt_paint datafiles transform screen curve gpencil physics preview uvedit space_outliner space_time space_view3d interface util  space_api space_graph space_image space_node space_buttons space_info space_file space_sound space_action space_nla space_script space_text space_sequencer space_logic
+DIRS = armature \
+  mesh \
+  animation \
+  object \
+  sculpt_paint \
+  datafiles \
+  transform \
+  screen \
+  curve \
+  gpencil \
+  physics \
+  preview \
+  uvedit \
+  space_outliner \
+  space_time \
+  space_view3d \
+  interface \
+  util \
+  space_api \
+  space_console \
+  space_graph \
+  space_image \
+  space_node \
+  space_buttons \
+  space_info \
+  space_file \
+  space_sound \
+  space_action \
+  space_nla \
+  space_script \
+  space_text \
+  space_sequencer \
+  space_logic \
 
 include nan_subdirs.mk

Added: branches/blender2.5/blender/source/blender/editors/space_console/Makefile
===================================================================
--- branches/blender2.5/blender/source/blender/editors/space_console/Makefile	                        (rev 0)
+++ branches/blender2.5/blender/source/blender/editors/space_console/Makefile	2009-07-16 03:11:21 UTC (rev 21614)
@@ -0,0 +1,55 @@
+# -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*-
+# vim: tabstop=8
+#
+# $Id$
+#
+# ***** BEGIN GPL LICENSE BLOCK *****
+#
+# 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
+# of the License, or (at your option) any later version. 
+#
+# This program is distributed in the hope that it will be useful,
+# 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) 2009 Blender Foundation
+# All rights reserved.
+#
+# The Original Code is: all of this file.
+#
+# Contributor(s): none yet.
+#
+# ***** END GPL LICENSE BLOCK *****
+
+LIBNAME = ed_console
+DIR = $(OCGDIR)/blender/$(LIBNAME)
+
+include nan_compile.mk
+
+CFLAGS += $(LEVEL_1_C_WARNINGS)
+
+CPPFLAGS += -I$(NAN_GLEW)/include
+CPPFLAGS += -I$(OPENGL_HEADERS)
+
+# not very neat....
+CPPFLAGS += -I../../windowmanager
+CPPFLAGS += -I../../blenfont
+CPPFLAGS += -I../../blenkernel
+CPPFLAGS += -I../../blenlib
+CPPFLAGS += -I../../makesdna
+CPPFLAGS += -I../../makesrna
+CPPFLAGS += -I../../imbuf
+CPPFLAGS += -I../../python
+CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
+CPPFLAGS += -I../../render/extern/include
+
+# own include 
+
+CPPFLAGS += -I../include 


Property changes on: branches/blender2.5/blender/source/blender/editors/space_console/Makefile
___________________________________________________________________
Name: svn:keywords
   + Author Date Id Revision
Name: svn:eol-style
   + native





More information about the Bf-blender-cvs mailing list