2011-02-03 18:57:53 +00:00
|
|
|
# -*- mode: gnumakefile; tab-width: 8; indent-tabs-mode: t; -*-
|
|
|
|
# vim: tabstop=8
|
|
|
|
# $Id$
|
|
|
|
#
|
2011-02-03 10:07:15 +00:00
|
|
|
# ##### BEGIN GPL 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.
|
|
|
|
#
|
|
|
|
# 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
#
|
|
|
|
# ##### END GPL LICENSE BLOCK #####
|
|
|
|
|
|
|
|
# This Makefile does an out-of-source CMake build in ../build/`OS`_`CPU`
|
|
|
|
# eg:
|
|
|
|
# ../build/Linux_i386
|
|
|
|
# This is for users who like to configure & build blender with a single command.
|
|
|
|
|
|
|
|
|
|
|
|
# System Vars
|
|
|
|
OS:=$(shell uname -s)
|
2011-02-07 05:05:41 +00:00
|
|
|
OS_NCASE:=$(shell uname -s | tr '[A-Z]' '[a-z]')
|
|
|
|
# CPU:=$(shell uname -m) # UNUSED
|
2011-02-03 10:07:15 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Source and Build DIR's
|
2011-02-04 04:12:24 +00:00
|
|
|
BLENDER_DIR:=$(shell pwd -P)
|
2011-02-07 05:05:41 +00:00
|
|
|
BUILD_DIR:=$(shell dirname $(BLENDER_DIR))/build/$(OS_NCASE)
|
2011-02-03 10:07:15 +00:00
|
|
|
|
|
|
|
|
2011-02-19 13:46:08 +00:00
|
|
|
# support 'make debug'
|
|
|
|
ifneq "$(findstring debug, $(MAKECMDGOALS))" ""
|
|
|
|
BUILD_DIR:=$(BUILD_DIR)_debug
|
|
|
|
BUILD_TYPE:=Debug
|
|
|
|
else
|
|
|
|
BUILD_TYPE:=Release
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
2011-02-03 10:07:15 +00:00
|
|
|
# Get the number of cores for threaded build
|
|
|
|
NPROCS:=1
|
|
|
|
ifeq ($(OS), Linux)
|
|
|
|
NPROCS:=$(shell grep -c ^processor /proc/cpuinfo)
|
|
|
|
endif
|
|
|
|
ifeq ($(OS), Darwin)
|
|
|
|
NPROCS:=$(shell system_profiler | awk '/Number Of CPUs/{print $4}{next;}')
|
|
|
|
endif
|
|
|
|
ifeq ($(OS), FreeBSD)
|
2011-02-04 04:12:24 +00:00
|
|
|
NPROCS:=$(shell sysctl -a | grep "hw.ncpu " | cut -d" " -f3 )
|
2011-02-03 10:07:15 +00:00
|
|
|
endif
|
|
|
|
ifeq ($(OS), NetBSD)
|
2011-02-04 04:12:24 +00:00
|
|
|
NPROCS:=$(shell sysctl -a | grep "hw.ncpu " | cut -d" " -f3 )
|
2011-02-03 10:07:15 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
# Build Blender
|
|
|
|
all:
|
|
|
|
@echo
|
|
|
|
@echo Configuring Blender ...
|
|
|
|
|
|
|
|
if test ! -f $(BUILD_DIR)/CMakeCache.txt ; then \
|
2011-02-04 04:12:24 +00:00
|
|
|
mkdir -p $(BUILD_DIR) ; \
|
2011-02-03 10:07:15 +00:00
|
|
|
cd $(BUILD_DIR) ; \
|
2011-02-19 13:46:08 +00:00
|
|
|
cmake $(BLENDER_DIR) -DCMAKE_BUILD_TYPE:STRING=$(BUILD_TYPE) ; \
|
2011-02-03 10:07:15 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
@echo
|
|
|
|
@echo Building Blender ...
|
2011-03-06 12:04:59 +00:00
|
|
|
cd $(BUILD_DIR) ; make -s -j $(NPROCS) install
|
2011-02-03 10:07:15 +00:00
|
|
|
@echo
|
|
|
|
@echo run blender from "$(BUILD_DIR)/bin/blender"
|
|
|
|
@echo
|
|
|
|
|
2011-02-19 13:46:08 +00:00
|
|
|
debug: all
|
|
|
|
# pass
|
|
|
|
|
2011-02-14 06:15:23 +00:00
|
|
|
# package types
|
|
|
|
package_debian:
|
2011-02-22 05:49:21 +00:00
|
|
|
cd build_files/package_spec ; DEB_BUILD_OPTIONS="parallel=$(NPROCS)" sh ./build_debian.sh
|
2011-02-14 06:15:23 +00:00
|
|
|
|
|
|
|
package_pacman:
|
2011-02-22 05:49:21 +00:00
|
|
|
cd build_files/package_spec/pacman ; MAKEFLAGS="-j$(NPROCS)" makepkg --asroot
|
2011-02-14 06:15:23 +00:00
|
|
|
|
|
|
|
# forward build targets
|
|
|
|
test:
|
|
|
|
cd $(BUILD_DIR) ; ctest . --output-on-failure
|
|
|
|
|
|
|
|
clean:
|
|
|
|
cd $(BUILD_DIR) ; make clean
|
|
|
|
|
2011-02-03 10:07:15 +00:00
|
|
|
.PHONY: all
|