This repository has been archived on 2023-10-09. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-archive/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