Finally a toplevel Makefile, all it does is prepare the environment and call

make in extern/, intern/ and source/
This commit is contained in:
Wouter van Heyst 2003-01-18 21:12:55 +00:00
parent 192a136c0f
commit 4b3ce0b7a5

13
Makefile Normal file

@ -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