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--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 00000000000..21ca5aa64dd
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,13 @@
+# toplevel Makefile for blender
+
+export NANBLENDERHOME=$(shell pwd)
+export MAKEFLAGS="-I $(NANBLENDERHOME)/source --no-print-directory"
+
+DIRS = extern intern source
+
+all: $(DIRS)
+
+$(DIRS):
+ $(MAKE) -C $@
+
+.PHONY: $(DIRS) all