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:
authorWouter van Heyst <larstiq-bforge@larstiq.dyndns.org>2003-01-19 00:12:55 +0300
committerWouter van Heyst <larstiq-bforge@larstiq.dyndns.org>2003-01-19 00:12:55 +0300
commit4b3ce0b7a503f86e21ad5cc5ad39b29844682486 (patch)
treebbd82016b89b903958d77aa12fdc481a51270221 /Makefile
parent192a136c0f605b5306ca661db20f029601330716 (diff)
Finally a toplevel Makefile, all it does is prepare the environment and call
make in extern/, intern/ and source/
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