[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [22844] branches/blender2.5/blender/source : Add Makefile for sound ops.

Diego Borghetti bdiego at gmail.com
Fri Aug 28 17:54:17 CEST 2009


Revision: 22844
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=22844
Author:   bdiego
Date:     2009-08-28 17:54:15 +0200 (Fri, 28 Aug 2009)

Log Message:
-----------
Add Makefile for sound ops.

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/sound/Makefile

Modified: branches/blender2.5/blender/source/Makefile
===================================================================
--- branches/blender2.5/blender/source/Makefile	2009-08-28 15:03:49 UTC (rev 22843)
+++ branches/blender2.5/blender/source/Makefile	2009-08-28 15:54:15 UTC (rev 22844)
@@ -266,6 +266,7 @@
 PULIB += $(OCGDIR)/blender/ed_console/$(DEBUG_DIR)libed_console.a
 PULIB += $(OCGDIR)/blender/ed_userpref/$(DEBUG_DIR)libed_userpref.a
 PULIB += $(OCGDIR)/blender/ed_gpencil/$(DEBUG_DIR)libed_gpencil.a
+PULIB += $(OCGDIR)/blender/ed_opsound/$(DEBUG_DIR)libed_opsound.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-08-28 15:03:49 UTC (rev 22843)
+++ branches/blender2.5/blender/source/blender/editors/Makefile	2009-08-28 15:54:15 UTC (rev 22844)
@@ -66,5 +66,6 @@
   space_sequencer \
   space_logic \
   space_userpref \
+  sound
 
 include nan_subdirs.mk

Copied: branches/blender2.5/blender/source/blender/editors/sound/Makefile (from rev 22843, branches/blender2.5/blender/source/blender/editors/Makefile)
===================================================================
--- branches/blender2.5/blender/source/blender/editors/sound/Makefile	                        (rev 0)
+++ branches/blender2.5/blender/source/blender/editors/sound/Makefile	2009-08-28 15:54:15 UTC (rev 22844)
@@ -0,0 +1,51 @@
+#
+# $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) 2007 Blender Foundation
+# All rights reserved.
+#
+# The Original Code is: all of this file.
+#
+# Contributor(s): none yet.
+#
+# ***** END GPL LICENSE BLOCK *****
+#
+# Makes module object directory and bounces make to subdirectories.
+
+LIBNAME = ed_opsound
+DIR = $(OCGDIR)/blender/$(LIBNAME)
+
+include nan_compile.mk
+
+CFLAGS += $(LEVEL_1_C_WARNINGS)
+
+CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
+
+CPPFLAGS += -I../../windowmanager
+CPPFLAGS += -I../../blenkernel
+CPPFLAGS += -I../../blenloader
+CPPFLAGS += -I../../blenlib
+CPPFLAGS += -I../../makesdna
+CPPFLAGS += -I../../makesrna
+CPPFLAGS += -I../../imbuf
+CPPFLAGS += -I$(NAN_AUDASPACE)/include
+
+# own include 
+
+CPPFLAGS += -I../include 





More information about the Bf-blender-cvs mailing list