Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21ca5aa64dd51da6e690372e0cc1be4ef8ebfd4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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