2003-01-11 19:14:34 +00:00
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
#
|
|
|
|
# ***** BEGIN GPL/BL DUAL 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. The Blender
|
|
|
|
# Foundation also sells licenses for use in proprietary software under
|
|
|
|
# the Blender License. See http://www.blender.org/BL/ for information
|
|
|
|
# about this.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# ***** END GPL/BL DUAL LICENSE BLOCK *****
|
|
|
|
# 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
|
2004-07-17 04:59:25 +00:00
|
|
|
DIRS = qhull/src solid
|
2003-01-11 19:14:34 +00:00
|
|
|
|
2004-05-04 04:55:24 +00:00
|
|
|
TARGET =
|
|
|
|
ifneq ($(OS),irix)
|
|
|
|
TARGET=solid
|
|
|
|
endif
|
|
|
|
|
2004-07-17 02:44:24 +00:00
|
|
|
# include nan_subdirs.mk
|
2003-01-11 19:14:34 +00:00
|
|
|
|
2004-07-17 02:44:24 +00:00
|
|
|
# .PHONY: qhull solid solid_with_qhull
|
2004-05-03 17:58:36 +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
|
2004-05-03 17:58:36 +00:00
|
|
|
|