blender/Makefile

14 lines
225 B
Makefile
Raw Normal View History

# 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