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-02-03 06:56:41 +0300
committerWouter van Heyst <larstiq-bforge@larstiq.dyndns.org>2003-02-03 06:56:41 +0300
commitce1ee7193be54574e5c64c41990a1f155ea364b5 (patch)
tree1e01eb6a5f47d2a4003253002ce8547a43ac08c1 /Makefile
parentcdfeebb00f6c81187aa46f5ca31c0b1b03d4732a (diff)
Makefile
- fix make/shell buglet to make use of --no-print-directory for cleaner logs - Conform to the nan_subdirs.mk mechanism of building intern/Makefile - include nan_subdirs.mk again This enables people to run make clean and all those other targets from the top level dir again, 'make source' has been lost for now
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 3 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 21ca5aa64dd..58770c7c1f7 100644
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,8 @@
# toplevel Makefile for blender
export NANBLENDERHOME=$(shell pwd)
-export MAKEFLAGS="-I $(NANBLENDERHOME)/source --no-print-directory"
+MAKEFLAGS=-I$(NANBLENDERHOME)/source --no-print-directory
+include source/nan_subdirs.mk
+SOURCEDIR = blender
DIRS = extern intern source
-
-all: $(DIRS)
-
-$(DIRS):
- $(MAKE) -C $@
-
-.PHONY: $(DIRS) all