2006-06-25 19:15:50 +00:00
|
|
|
# $Id$
|
2003-01-11 19:14:34 +00:00
|
|
|
#
|
2008-04-16 22:40:48 +00:00
|
|
|
# ***** BEGIN GPL LICENSE BLOCK *****
|
2003-01-11 19:14:34 +00:00
|
|
|
#
|
|
|
|
# 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
|
2008-04-16 22:40:48 +00:00
|
|
|
# of the License, or (at your option) any later version.
|
2003-01-11 19:14:34 +00:00
|
|
|
#
|
|
|
|
# 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) 2002 by Hans Lambermont
|
|
|
|
# All rights reserved.
|
|
|
|
#
|
|
|
|
# The Original Code is: all of this file.
|
|
|
|
#
|
|
|
|
# Contributor(s): none yet.
|
|
|
|
#
|
2008-04-16 22:40:48 +00:00
|
|
|
# ***** END GPL LICENSE BLOCK *****
|
2003-01-11 19:14:34 +00:00
|
|
|
# Bounces make to subdirectories. Also installs after succesful all target.
|
|
|
|
|
2003-01-11 23:20:10 +00:00
|
|
|
include nan_definitions.mk
|
|
|
|
|
2003-01-11 19:14:34 +00:00
|
|
|
SOURCEDIR = extern
|
2003-01-11 23:20:10 +00:00
|
|
|
DIR = $(OCGDIR)/extern
|
2009-06-21 16:18:38 +00:00
|
|
|
DIRS = glew/src
|
2005-02-18 16:52:03 +00:00
|
|
|
|
2009-06-08 20:08:19 +00:00
|
|
|
# Cloth requires it
|
|
|
|
#ifneq ($(NAN_NO_KETSJI), true)
|
|
|
|
DIRS += bullet2
|
|
|
|
#endif
|
2005-08-18 06:07:02 +00:00
|
|
|
|
2008-01-18 21:39:47 +00:00
|
|
|
ifeq ($(WITH_BINRELOC), true)
|
|
|
|
DIRS += binreloc
|
|
|
|
endif
|
|
|
|
|
2009-03-10 16:04:29 +00:00
|
|
|
ifeq ($(WITH_OPENJPEG), true)
|
|
|
|
DIRS += libopenjpeg
|
|
|
|
endif
|
|
|
|
|
2009-08-20 18:34:14 +00:00
|
|
|
ifeq ($(WITH_LZO), true)
|
|
|
|
DIRS += lzo/minilzo
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(WITH_LZMA), true)
|
|
|
|
DIRS += lzma
|
|
|
|
endif
|
|
|
|
|
2008-11-24 14:15:05 +00:00
|
|
|
TARGET = solid
|
2004-05-04 04:55:24 +00:00
|
|
|
|
2004-07-17 02:44:24 +00:00
|
|
|
all::
|
2004-08-21 19:12:59 +00:00
|
|
|
@[ -d $(OCGDIR)/extern ] || mkdir -p $(OCGDIR)/extern
|
2003-01-11 23:20:10 +00:00
|
|
|
@for i in $(DIRS); do \
|
2004-07-17 02:44:24 +00:00
|
|
|
echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
|
2003-01-19 21:17:45 +00:00
|
|
|
$(MAKE) -C $$i install || exit 1; \
|
2003-01-11 19:14:34 +00:00
|
|
|
done
|
2004-08-21 19:12:59 +00:00
|
|
|
|
2004-07-17 02:44:24 +00:00
|
|
|
clean test debug::
|
2004-08-21 19:12:59 +00:00
|
|
|
@[ -d $(OCGDIR)/extern ] || mkdir -p $(OCGDIR)/extern
|
2004-07-17 02:44:24 +00:00
|
|
|
@for i in $(DIRS); do \
|
|
|
|
echo "====> $(MAKE) $@ in $(SOURCEDIR)/$$i" ;\
|
|
|
|
$(MAKE) -C $$i $@ || exit 1; \
|
|
|
|
done
|