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:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 58770c7c1f7..f6908f88470 100644
--- a/Makefile
+++ b/Makefile
@@ -2,7 +2,12 @@
export NANBLENDERHOME=$(shell pwd)
MAKEFLAGS=-I$(NANBLENDERHOME)/source --no-print-directory
-include source/nan_subdirs.mk
SOURCEDIR = blender
DIRS = extern intern source
+include source/nan_subdirs.mk
+
+.PHONY: release
+release:
+ @echo "====> $(MAKE) $@ in $(SOURCEDIR)/$@" ;\
+ $(MAKE) -C $@ $@ || exit 1;