blender/Makefile
Wouter van Heyst 4b3ce0b7a5 Finally a toplevel Makefile, all it does is prepare the environment and call
make in extern/, intern/ and source/
2003-01-18 21:12:55 +00:00

14 lines
225 B
Makefile

# 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