Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Want <cwant@ualberta.ca>2004-03-21 22:59:51 +0300
committerChris Want <cwant@ualberta.ca>2004-03-21 22:59:51 +0300
commit5b90aafbd6815e29343f8e9aba9e3e20f85b3cc0 (patch)
tree1e163d5a468fcb2d8bc70785998b3aa12da83f02 /source/nan_definitions.mk
parent86108b3665df7891b5e40b7f1feff1b6528c882f (diff)
Added 2 options to the Makefiles (enable in environment, user-def.mk,
or whatever): NAN_NO_KETSJI: when set to true, disables compilation of the game engine. NAN_JUST_BLENDERDYNAMIC: when set to true, only dynamic executable is build (i.e., no plugin, etc). Note that NAN_NO_KETSJI implies NAN_JUST_BLENDERDYNAMIC.
Diffstat (limited to 'source/nan_definitions.mk')
-rw-r--r--source/nan_definitions.mk7
1 files changed, 7 insertions, 0 deletions
diff --git a/source/nan_definitions.mk b/source/nan_definitions.mk
index a4a2f65afce..9d648c6d78a 100644
--- a/source/nan_definitions.mk
+++ b/source/nan_definitions.mk
@@ -467,6 +467,8 @@ all debug::
# enable freetype2 support for text objects
#export WITH_FREETYPE2 ?= true
endif
+
+endif
endif
endif
endif
@@ -474,4 +476,9 @@ endif
endif
endif
endif
+
+# Don't want to build the gameengine?
+ifeq ($(NAN_NO_KETSJI), true)
+ export NAN_JUST_BLENDERDYNAMIC=true
+ export NAN_NO_OPENAL=true
endif