4 # ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
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. The Blender
10 # Foundation also sells licenses for use in proprietary software under
11 # the Blender License. See http://www.blender.org/BL/ for information
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software Foundation,
21 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 # The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
24 # All rights reserved.
26 # The Original Code is: all of this file.
28 # Contributor(s): none yet.
30 # ***** END GPL/BL DUAL LICENSE BLOCK *****
32 include nan_definitions.mk
34 export VERSION := $(shell cat VERSION)
36 BLENDNAME=blender-$(VERSION)-$(CONFIG_GUESS)-py$(NAN_PYTHON_VERSION)$(TYPE)
37 export DISTDIR=$(NAN_OBJDIR)/$(BLENDNAME)
38 export CONFDIR=$(DISTDIR)/.blender
50 ifeq ($(OS),$(findstring $(OS), "freebsd irix linux openbsd solaris"))
83 ifeq ($(WITH_BF_STATICOPENGL), true)
84 @$(MAKE) pkg TYPE="-static"
87 # OS independent targets below:
91 package: version makedirs
94 @#echo "****> Install text"
95 @cp text/blender.html $(DISTDIR)
96 @cp text/*.txt $(DISTDIR)
97 @cp text/*.pdf $(DISTDIR)
98 ifeq ($(FREEDESKTOP), true)
99 @#echo "****> Install freedesktop icons"
100 @mkdir $(DISTDIR)/icons
101 @mkdir $(DISTDIR)/icons/16x16
102 @cp freedesktop/icons/16x16/blender.png $(DISTDIR)/icons/16x16
103 @mkdir $(DISTDIR)/icons/22x22
104 @cp freedesktop/icons/22x22/blender.png $(DISTDIR)/icons/22x22
105 @mkdir $(DISTDIR)/icons/32x32
106 @cp freedesktop/icons/32x32/blender.png $(DISTDIR)/icons/32x32
107 @mkdir $(DISTDIR)/icons/scalable
108 @cp freedesktop/icons/scalable/blender.svg $(DISTDIR)/icons/scalable
110 @echo "----> Make Config dir .blender"
112 @# possible overruling .txt text documents
113 @[ ! -d $(CONFIG_GUESS)/text ] || \
114 cp -f $(CONFIG_GUESS)/text/*.txt $(DISTDIR)
115 #on OS X the contents of the .blender dir is already inside the bundle
116 ifneq ($(OS), darwin)
117 @[ ! -d $(OCGDIR)/bin/.blender ] || \
118 cp -r $(OCGDIR)/bin/.blender $(DISTDIR)
119 @rm -rf $(DISTDIR)/.svn $(DISTDIR)/*/.svn $(DISTDIR)/*/*/.svn
120 @cp $(NANBLENDERHOME)/bin/.blender/.Blanguages $(CONFDIR)
121 @cp $(NANBLENDERHOME)/bin/.blender/.bfont.ttf $(CONFDIR)
123 @echo "----> Copy blender$(EXT0) executable"
124 ifeq ($(TYPE),-static)
125 @cp $(OCGDIR)/bin/blenderstatic$(EXT0) $(DISTDIR)/blender$(EXT0)
128 @cp -r $(OCGDIR)/bin/blender$(EXT0) $(DISTDIR)/Blender$(EXT0)
130 @cp $(OCGDIR)/bin/blender$(EXT0) $(DISTDIR)/blender$(EXT0)
132 @if [ -f $(OCGDIR)/bin/blenderplayer$(EXTO) ]; then \
133 cp $(OCGDIR)/bin/blenderplayer$(EXTO) \
134 $(DISTDIR)/blenderplayer$(EXTO) ; \
138 ifneq ($(NOPLUGINS),true)
139 @echo "----> Copy and compile plugins"
140 @cp -r plugins $(DISTDIR)/plugins
141 @mkdir -p $(DISTDIR)/plugins/include
142 @cp ../source/blender/blenpluginapi/*.h $(DISTDIR)/plugins/include/
143 @chmod 755 $(DISTDIR)/plugins/bmake
144 @$(MAKE) -C $(DISTDIR)/plugins all > /dev/null || exit 1;
145 @rm -fr $(DISTDIR)/plugins/.svn $(DISTDIR)/plugins/*/.svn \
146 $(DISTDIR)/plugins/*/*.o
148 #on OS X the plugins move to the installation directory
150 @mkdir -p $(CONFDIR)/plugins/sequence
151 @mkdir -p $(CONFDIR)/plugins/texture
152 @mv $(DISTDIR)/plugins/sequence/*.so $(CONFDIR)/plugins/sequence
153 @mv $(DISTDIR)/plugins/texture/*.so $(CONFDIR)/plugins/texture
157 @echo "----> Copy python infrastructure"
158 @[ ! -d scripts ] || cp -r scripts $(CONFDIR)/scripts
159 @[ ! -d $(CONFDIR)/scripts ] || rm -fr $(CONFDIR)/scripts/.svn $(CONFDIR)/scripts/*/.svn $(CONFDIR)/scripts/*/*/.svn
162 @echo "----> Move .blender to .app/Contents/MacOS/"
163 @rm -fr $(DISTDIR)/blender$(EXT0)/Contents/MacOS/.blender
164 @mv $(DISTDIR)/.blender $(DISTDIR)/blender$(EXT0)/Contents/MacOS/
167 ifneq ($(NOSTRIP),true)
168 @echo "----> Strip blender executable"
170 @strip -x $(DISTDIR)/blender$(EXT0)/Contents/MacOS/blender
172 @strip -x $(DISTDIR)/blender$(EXT0)
173 @if [ -f $(DISTDIR)/blenderplayer$(EXTO) ]; then \
174 strip -x $(DISTDIR)/blender$(EXT0) ; \
178 @[ ! -x $(CONFIG_GUESS)/specific.sh ] || (\
179 echo "**--> Execute specific.sh in $(CONFIG_GUESS)/" && \
180 cd $(CONFIG_GUESS) && ./specific.sh )
183 @echo "----> Create distribution file $(BLENDNAME)$(EXT1)"
184 @#enable the next sleep if you get 'tar file changed while reading'
186 rm -f $(NAN_OBJDIR)/$(VERSION)/$(BLENDNAME)$(EXT1)*
187 @cd $(NAN_OBJDIR) && $(TAR) $(TARFLAGS) $(VERSION)/$(BLENDNAME)$(EXT1) $(BLENDNAME)
189 @echo "----> Compressing distribution to $(BLENDNAME)$(EXT1)$(EXT2)"
190 @$(COMPRESS) $(COMPRESSFLAGS) $(NAN_OBJDIR)/$(VERSION)/$(BLENDNAME)$(EXT1)
192 @#echo "****> Clean up temporary distribution directory"
194 @echo "****> $(NAN_OBJDIR)/$(VERSION)/$(BLENDNAME)$(EXT1)$(EXT2) is ready"
197 @echo "*---> Create $(BLENDNAME) package"
200 @#echo "****> Create package directory $(VERSION) if necessary"
201 @[ -d $(NAN_OBJDIR)/$(VERSION) ] || mkdir $(NAN_OBJDIR)/$(VERSION)
202 @#echo "****> Prepare temporary distribution directory"