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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2003-04-30 21:18:34 +0400
committerKent Mein <mein@cs.umn.edu>2003-04-30 21:18:34 +0400
commitabd2a37f8a07f9dfe440ff6760ccbf2bd43d38bc (patch)
tree45bcc1431f7988f937b96e3363dfa1890aff08a5 /release/plugins
parent4a3d4472b1664eeb12b7844db210d6f8992ce025 (diff)
Moved the compiling plugins to after the binary is copied over.
(macosX needs the binary to link against for the plugins) Also updated the plugins/Makefile to use $(MAKE) -C dir instead of cd dir; make Kent
Diffstat (limited to 'release/plugins')
-rw-r--r--release/plugins/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/release/plugins/Makefile b/release/plugins/Makefile
index bef7c7b5e17..db013d6e08e 100644
--- a/release/plugins/Makefile
+++ b/release/plugins/Makefile
@@ -32,11 +32,11 @@
all: textures sequences
textures:
- cd texture; make;
+ $(MAKE) -C texture
sequences:
- cd sequence; make;
+ $(MAKE) -C sequence
clean:
- cd texture; make clean;
- cd sequence; make clean;
+ $(MAKE) -C texture clean
+ $(MAKE) -C sequence clean