Ok this should fix up make inside of blender/release
you can also do a make release inside of blender/source Should this be moved to the rootdir or do we want it sort of hidden? Also I only tested it on linux so feel free to give it a shot it probably will need some tweaks for other platforms but hey :) I set VERSION to 2.26a wasn't sure what we want it to be. Kent
This commit is contained in:
parent
f8ae7db9aa
commit
9e5f66b8b1
@ -29,7 +29,7 @@
|
||||
#
|
||||
# ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||
|
||||
include nan.mk
|
||||
include nan_definitions.mk
|
||||
|
||||
VERSION := $(shell cat VERSION)
|
||||
|
||||
@ -101,19 +101,20 @@ install: package
|
||||
ifneq ($(NOPLUGINS),true)
|
||||
@echo "----> Copy and compile plugins"
|
||||
@cp -r plugins $(DISTDIR)/plugins
|
||||
@chmod 755 $(DISTDIR)/plugins/bmake
|
||||
@$(MAKE) -C $(DISTDIR)/plugins all > /dev/null || exit 1;
|
||||
@rm -fr $(DISTDIR)/plugins/CVS $(DISTDIR)/plugins/*/CVS \
|
||||
$(DISTDIR)/plugins/*/*.o
|
||||
endif
|
||||
@echo "----> Copy blender$(EXT0) executable"
|
||||
ifeq ($(TYPE),-static)
|
||||
@cp $(OCGDIR)/blenderstatic $(DISTDIR)/blender
|
||||
@cp $(OCGDIR)/bin/blenderstatic$(EXT0) $(DISTDIR)/blender$(EXT0)
|
||||
else
|
||||
@cp $(OCGDIR)/blenderdynamic$(EXT0) $(DISTDIR)/blender$(EXT0)
|
||||
@cp $(OCGDIR)/bin/blender$(EXT0) $(DISTDIR)/blender$(EXT0)
|
||||
endif
|
||||
ifneq ($(NOSTRIP),true)
|
||||
@echo "----> Strip blender executable"
|
||||
@strip $(DISTDIR)/blender
|
||||
@strip $(DISTDIR)/blender$(EXT0)
|
||||
endif
|
||||
@[ ! -x $(CONFIG_GUESS)/specific.sh ] || (\
|
||||
echo "**--> Execute specific.sh in $(CONFIG_GUESS)/" && \
|
||||
|
@ -1 +1 @@
|
||||
2.21c
|
||||
2.26a
|
||||
|
Loading…
Reference in New Issue
Block a user