~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/blenkernel/intern/Makefile

  • Committer: Package Import Robot
  • Author(s): Matteo F. Vescovi
  • Date: 2012-07-23 08:54:18 UTC
  • mfrom: (14.2.16 sid)
  • mto: (14.2.19 sid)
  • mto: This revision was merged to the branch mainline in revision 42.
  • Revision ID: package-import@ubuntu.com-20120723085418-9foz30v6afaf5ffs
Tags: 2.63a-2
* debian/: Cycles support added (Closes: #658075)
  For now, this top feature has been enabled only
  on [any-amd64 any-i386] architectures because
  of OpenImageIO failing on all others
* debian/: scripts installation path changed
  from /usr/lib to /usr/share:
  + debian/patches/: patchset re-worked for path changing
  + debian/control: "Breaks" field added on yafaray-exporter

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# $Id: Makefile 28911 2010-05-21 21:26:03Z sgefant $
3
 
#
4
 
# ***** BEGIN GPL LICENSE BLOCK *****
5
 
#
6
 
# This program is free software; you can redistribute it and/or
7
 
# modify it under the terms of the GNU General Public License
8
 
# as published by the Free Software Foundation; either version 2
9
 
# of the License, or (at your option) any later version.
10
 
#
11
 
# This program is distributed in the hope that it will be useful,
12
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
# GNU General Public License for more details.
15
 
#
16
 
# You should have received a copy of the GNU General Public License
17
 
# along with this program; if not, write to the Free Software Foundation,
18
 
# Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
19
 
#
20
 
# The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
21
 
# All rights reserved.
22
 
#
23
 
# The Original Code is: all of this file.
24
 
#
25
 
# Contributor(s): none yet.
26
 
#
27
 
# ***** END GPL LICENSE BLOCK *****
28
 
#
29
 
#
30
 
 
31
 
LIBNAME = blenkernel
32
 
DIR = $(OCGDIR)/blender/$(LIBNAME)
33
 
 
34
 
include nan_compile.mk
35
 
 
36
 
CFLAGS += $(LEVEL_1_C_WARNINGS)
37
 
 
38
 
# OpenGL and Python
39
 
CPPFLAGS += -I$(NAN_GLEW)/include
40
 
CPPFLAGS += -I$(OPENGL_HEADERS)
41
 
CPPFLAGS += -I$(NAN_PYTHON)/include/python$(NAN_PYTHON_VERSION)
42
 
 
43
 
CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
44
 
CPPFLAGS += -I../../../../intern/memutil
45
 
CPPFLAGS += -I$(NAN_AUDASPACE)/include
46
 
# Reference to the types in makesdna and imbuf
47
 
CPPFLAGS += -I../../makesdna
48
 
CPPFLAGS += -I../../makesrna
49
 
CPPFLAGS += -I../../imbuf
50
 
CPPFLAGS += -I../../ikplugin
51
 
# This mod uses the BLI and BLO module
52
 
CPPFLAGS += -I../../blenlib
53
 
CPPFLAGS += -I../../blenloader
54
 
CPPFLAGS += -I../../python
55
 
CPPFLAGS += -I../../blenfont
56
 
# This is bad level, remove eventually
57
 
CPPFLAGS += -I../../windowmanager
58
 
# also avi is used
59
 
CPPFLAGS += -I../../avi
60
 
CPPFLAGS += -I$(NAN_GUARDEDALLOC)/include
61
 
 
62
 
# we still refer to /include a bit...
63
 
CPPFLAGS += -I../../editors/include
64
 
 
65
 
# to include the render stuff:
66
 
CPPFLAGS += -I../../render/extern/include
67
 
 
68
 
# for sound
69
 
#CPPFLAGS += -I../../../kernel/gen_system
70
 
CPPFLAGS +=  $(NAN_SDLCFLAGS)
71
 
 
72
 
CPPFLAGS += -I$(NAN_IKSOLVER)/include
73
 
CPPFLAGS += -I$(NAN_DECIMATION)/include
74
 
CPPFLAGS += -I$(NAN_ELBEEM)/include
75
 
CPPFLAGS += -I$(NAN_OPENNL)/include
76
 
CPPFLAGS += -I$(NAN_BSP)/include
77
 
CPPFLAGS += -I$(NAN_SMOKE)/include
78
 
 
79
 
# path to zlib
80
 
CPPFLAGS += -I$(NAN_ZLIB)/include
81
 
 
82
 
#path to nodes
83
 
CPPFLAGS += -I../../nodes
84
 
 
85
 
#path to gpu
86
 
CPPFLAGS += -I../../gpu
87
 
 
88
 
#modifiers got moved
89
 
CPPFLAGS += -I../../modifiers
90
 
 
91
 
# path to our own external headerfiles
92
 
CPPFLAGS += -I..
93
 
 
94
 
CPPFLAGS += -I$(NAN_FREETYPE)/include
95
 
CPPFLAGS += -I$(NAN_FREETYPE)/include/freetype2
96
 
 
97
 
# path to bullet2, for cloth
98
 
ifeq ($(NAN_USE_BULLET), true)
99
 
        CPPFLAGS += -I$(NAN_BULLET2)/include
100
 
endif
101
 
 
102
 
# lzo and lzma, for pointcache
103
 
ifeq ($(WITH_LZO),true)
104
 
        CPPFLAGS += -I$(NAN_LZO)/minilzo
105
 
        CPPFLAGS += -DWITH_LZO
106
 
endif
107
 
 
108
 
ifeq ($(WITH_LZO),true)
109
 
        CPPFLAGS += -I$(NAN_LZMA)
110
 
        CPPFLAGS += -DWITH_LZMA
111
 
endif
112
 
 
113
 
ifeq ($(WITH_FFMPEG),true)
114
 
    CPPFLAGS += -DWITH_FFMPEG
115
 
    CPPFLAGS += $(NAN_FFMPEGCFLAGS)
116
 
endif
117
 
 
118
 
ifeq ($(WITH_OPENEXR), true)
119
 
    CPPFLAGS += -DWITH_OPENEXR
120
 
endif
121
 
 
122
 
ifeq ($(WITH_DDS), true)
123
 
    CPPFLAGS += -DWITH_DDS
124
 
endif
125
 
 
126
 
ifeq ($(WITH_OPENJPEG), true)
127
 
    CPPFLAGS += -DWITH_OPENJPEG
128
 
endif
129
 
 
130
 
ifeq ($(WITH_QUICKTIME), true)
131
 
        CPPFLAGS += -I../../quicktime
132
 
        CPPFLAGS += -DWITH_QUICKTIME
133
 
endif
134
 
 
135
 
ifeq ($(WITH_TIFF), true)
136
 
    CPPFLAGS += -DWITH_TIFF
137
 
endif
138
 
 
139
 
ifeq ($(OS), darwin)
140
 
    ifeq ($(WITH_BF_OPENMP), true)
141
 
      CPPFLAGS += -DPARALLEL=1
142
 
    endif
143
 
endif