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