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:
@@ -29,7 +29,7 @@
|
|||||||
#
|
#
|
||||||
# ***** END GPL/BL DUAL LICENSE BLOCK *****
|
# ***** END GPL/BL DUAL LICENSE BLOCK *****
|
||||||
|
|
||||||
include nan.mk
|
include nan_definitions.mk
|
||||||
|
|
||||||
VERSION := $(shell cat VERSION)
|
VERSION := $(shell cat VERSION)
|
||||||
|
|
||||||
@@ -101,19 +101,20 @@ install: package
|
|||||||
ifneq ($(NOPLUGINS),true)
|
ifneq ($(NOPLUGINS),true)
|
||||||
@echo "----> Copy and compile plugins"
|
@echo "----> Copy and compile plugins"
|
||||||
@cp -r plugins $(DISTDIR)/plugins
|
@cp -r plugins $(DISTDIR)/plugins
|
||||||
|
@chmod 755 $(DISTDIR)/plugins/bmake
|
||||||
@$(MAKE) -C $(DISTDIR)/plugins all > /dev/null || exit 1;
|
@$(MAKE) -C $(DISTDIR)/plugins all > /dev/null || exit 1;
|
||||||
@rm -fr $(DISTDIR)/plugins/CVS $(DISTDIR)/plugins/*/CVS \
|
@rm -fr $(DISTDIR)/plugins/CVS $(DISTDIR)/plugins/*/CVS \
|
||||||
$(DISTDIR)/plugins/*/*.o
|
$(DISTDIR)/plugins/*/*.o
|
||||||
endif
|
endif
|
||||||
@echo "----> Copy blender$(EXT0) executable"
|
@echo "----> Copy blender$(EXT0) executable"
|
||||||
ifeq ($(TYPE),-static)
|
ifeq ($(TYPE),-static)
|
||||||
@cp $(OCGDIR)/blenderstatic $(DISTDIR)/blender
|
@cp $(OCGDIR)/bin/blenderstatic$(EXT0) $(DISTDIR)/blender$(EXT0)
|
||||||
else
|
else
|
||||||
@cp $(OCGDIR)/blenderdynamic$(EXT0) $(DISTDIR)/blender$(EXT0)
|
@cp $(OCGDIR)/bin/blender$(EXT0) $(DISTDIR)/blender$(EXT0)
|
||||||
endif
|
endif
|
||||||
ifneq ($(NOSTRIP),true)
|
ifneq ($(NOSTRIP),true)
|
||||||
@echo "----> Strip blender executable"
|
@echo "----> Strip blender executable"
|
||||||
@strip $(DISTDIR)/blender
|
@strip $(DISTDIR)/blender$(EXT0)
|
||||||
endif
|
endif
|
||||||
@[ ! -x $(CONFIG_GUESS)/specific.sh ] || (\
|
@[ ! -x $(CONFIG_GUESS)/specific.sh ] || (\
|
||||||
echo "**--> Execute specific.sh in $(CONFIG_GUESS)/" && \
|
echo "**--> Execute specific.sh in $(CONFIG_GUESS)/" && \
|
||||||
|
@@ -1 +1 @@
|
|||||||
2.21c
|
2.26a
|
||||||
|
Reference in New Issue
Block a user