diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-02-18 18:20:00 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-02-18 18:20:00 +0000 |
commit | 77a1b1342c5b542f8c65801f5539662c6a2c736b (patch) | |
tree | 4954f9f61abc4093914c94d18d08b142e3a2d9b6 /externals | |
parent | aa29c1dc026c53ae8e1e139b6d8794fb85dc5d2e (diff) |
fixed up 'maxmode' libraries for cyclone into their own subdir
svn path=/trunk/; revision=10795
Diffstat (limited to 'externals')
-rw-r--r-- | externals/Makefile | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/externals/Makefile b/externals/Makefile index 59816ffd..07a012e4 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -562,21 +562,17 @@ cyclone_install: cyclone --author "Kzrysztof Czaja" \ --license "BSD" \ --description "a library for porting and running Max/MSP patches in Pd" +# kludge to build as one-file-per-class using the miXed build system + cd $(externals_src)/miXed/cyclone && $(MAKE) OUT_DIR=$(CYCLONE_OUT_DIR) +# install "maxmode" libraries into subdir, so they don't override the libdir + install -d $(objectsdir)/$(CYCLONE_NAME)/maxmode install -p $(externals_src)/miXed/bin/cyclone.$(EXTENSION) \ $(externals_src)/miXed/bin/hammer.$(EXTENSION) \ $(externals_src)/miXed/bin/sickle.$(EXTENSION) \ $(externals_src)/miXed/bin/maxmode.$(EXTENSION) \ - $(objectsdir)/$(CYCLONE_NAME) -# kludge to build as one-file-per-class using the miXed build system - cd $(externals_src)/miXed/cyclone && $(MAKE) OUT_DIR=$(CYCLONE_OUT_DIR) + $(objectsdir)/$(CYCLONE_NAME)/maxmode # install "cyclist" command line app with pd -# this doesn't build in the right place yet -# install -p -m0755 $(CYCLONE_OUT_DIR)/cyclist $(bindir) && \ -# rm $(CYCLONE_OUT_DIR)/cyclist -install -p -m0755 $(externals_src)/miXed/bin/cyclist $(bindir) -# rename cyclone lib since it will pre-empt libdir functionality -# mv $(CYCLONE_OUT_DIR)/cyclone.$(EXTENSION) \ -# $(CYCLONE_OUT_DIR)/cyclonelib.$(EXTENSION) install -d $(helpdir)/$(CYCLONE_NAME) install -p $(externals_src)/miXed/doc/help/cyclone/*.* \ $(helpdir)/$(CYCLONE_NAME) |