From 4b3ce0b7a503f86e21ad5cc5ad39b29844682486 Mon Sep 17 00:00:00 2001 From: Wouter van Heyst Date: Sat, 18 Jan 2003 21:12:55 +0000 Subject: Finally a toplevel Makefile, all it does is prepare the environment and call make in extern/, intern/ and source/ --- Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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 -- cgit v1.2.3