8 # ***** BEGIN GPL/BL DUAL LICENSE BLOCK *****
10 # This program is free software; you can redistribute it and/or
11 # modify it under the terms of the GNU General Public License
12 # as published by the Free Software Foundation; either version 2
13 # of the License, or (at your option) any later version. The Blender
14 # Foundation also sells licenses for use in proprietary software under
15 # the Blender License. See http://www.blender.org/BL/ for information
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software Foundation,
25 # Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 # The Original Code is Copyright (C) 2002 by Hans Lambermont
28 # All rights reserved.
30 # The Original Code is: all of this file.
32 # Contributor(s): none yet.
34 # ***** END GPL/BL DUAL LICENSE BLOCK *****
35 # Bounces make to subdirectories. Also installs after succesful all target.
37 include nan_definitions.mk
40 DIR = $(OCGDIR)/extern
41 DIRS = qhull/src solid
43 ifeq ($(WITH_FREETYPE2), true)
47 ifeq ($(WITH_FFMPEG), true)
48 ifeq ($(NAN_FFMPEG), $(LCGDIR)/ffmpeg)
51 ifeq ($(NAN_FFMPEG), $(LCGDIR)/gcc/ffmpeg)
56 ifneq ($(NAN_NO_KETSJI), true)
66 @[ -d $(OCGDIR)/extern ] || mkdir -p $(OCGDIR)/extern
67 @for i in $(DIRS); do \
68 echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
69 $(MAKE) -C $$i install || exit 1; \
73 @[ -d $(OCGDIR)/extern ] || mkdir -p $(OCGDIR)/extern
74 @for i in $(DIRS); do \
75 echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
76 $(MAKE) -C $$i $@ || exit 1; \