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:
authorTon Roosendaal <ton@blender.org>2006-11-30 21:25:44 +0300
committerTon Roosendaal <ton@blender.org>2006-11-30 21:25:44 +0300
commita2bcb21ec75167f09c7868d9a18688a3ff423cdd (patch)
treed55b1aa133b25adb038456fec0aaeab84a044010 /extern/bullet2/Makefile
parente565bbd29862e1a49870f556ea150ebe6feb63aa (diff)
Makefile for Bullet had error, didn't copy the .a file to the right dir.
Diffstat (limited to 'extern/bullet2/Makefile')
-rw-r--r--extern/bullet2/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/extern/bullet2/Makefile b/extern/bullet2/Makefile
index e835160d14b..be242c290ff 100644
--- a/extern/bullet2/Makefile
+++ b/extern/bullet2/Makefile
@@ -29,6 +29,7 @@
#
# ***** END GPL/BL DUAL LICENSE BLOCK *****
LIBNAME = bullet2
+include nan_definitions.mk
SOURCEDIR = extern/$(LIBNAME)
DIR = $(OCGDIR)/extern/$(LIBNAME)
DIRS = src
@@ -57,7 +58,7 @@ install: all debug
done
@[ -d $(NAN_BULLET2)/lib ] || mkdir -p $(NAN_BULLET2)/lib
@$(CP) $(DISTDIR)/*.h $(NAN_BULLET2)/include
- @$(CP) $(DIR)/libbullet2.a $(NAN_BULLET2)/lib
+ @$(CP) $(OCGDIR)/extern/bullet2/libbullet2.a $(NAN_BULLET2)/lib
ifeq ($(OS),darwin)
ranlib $(NAN_BULLET2)/lib/libbullet2.a
endif