From abd2a37f8a07f9dfe440ff6760ccbf2bd43d38bc Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Wed, 30 Apr 2003 17:18:34 +0000 Subject: 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 --- release/plugins/Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'release/plugins') 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 -- cgit v1.2.3