diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-05-06 04:33:28 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2009-05-06 04:33:28 +0000 |
commit | ac20f964cddd4e6f27c37467dbc07177d6430102 (patch) | |
tree | 9221efe6f086f6c553d290015467efc12080090c | |
parent | 739722ebea4f44e25c51526311c7c248208b5702 (diff) |
setup pdp and pidip in semi-libdirs like how Gem has be installed for Pd-extended for a while
svn path=/trunk/; revision=11241
-rw-r--r-- | externals/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/externals/Makefile b/externals/Makefile index 0d294b7b..646bc9ff 100644 --- a/externals/Makefile +++ b/externals/Makefile @@ -2052,18 +2052,18 @@ $(externals_src)/pdp/pdp.$(EXTENSION): $(externals_src)/pdp/Makefile.config pdp: $(externals_src)/pdp/pdp.$(EXTENSION) pdp_install: pdp -# install -d $(objectsdir)/$(PDP_NAME) + install -d $(objectsdir)/$(PDP_NAME) # $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(PDP_NAME) \ # --author "Tom Schouten" \ # --description "Pure Data Packet" \ # --license "GNU GPL" install -d $(objectsdir) - install -p $(externals_src)/pdp/*.$(EXTENSION) $(objectsdir) + install -p $(externals_src)/pdp/*.$(EXTENSION) $(objectsdir)/$(PDP_NAME) # install -p $(externals_src)/pdp/abstractions/*.pd $(objectsdir)/$(PDP_NAME) install -p $(externals_src)/pdp/abstractions/*.pd $(objectsdir) install -d $(helpdir)/$(PDP_NAME) install -p $(externals_src)/pdp/doc/objects/*.* $(helpdir)/$(PDP_NAME) - install -p $(externals_src)/pdp/doc/objects/*.* $(objectsdir) + install -p $(externals_src)/pdp/doc/objects/*.* $(objectsdir)/$(PDP_NAME) install -d $(manualsdir)/$(PDP_NAME) install -p $(externals_src)/pdp/doc/reference.txt $(manualsdir)/$(PDP_NAME) install -p $(externals_src)/pdp/doc/introduction/*.* \ @@ -2177,16 +2177,15 @@ $(externals_src)/pidip/Makefile pidip: $(externals_src)/pidip/pidip.$(EXTENSION) pidip_install: pidip -# install -d $(objectsdir)/$(PIDIP_NAME) + install -d $(objectsdir)/$(PIDIP_NAME) # $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(PIDIP_NAME) \ # --author "Yves Degoyon" \ # --description "PiDiP is Definitely in Pieces" \ # --license "GNU GPLv2" - install -d $(objectsdir) - install -p $(externals_src)/pidip/*.$(EXTENSION) $(objectsdir) + install -p $(externals_src)/pidip/*.$(EXTENSION) $(objectsdir)/$(PIDIP_NAME) install -d $(helpdir)/$(PIDIP_NAME) install -p $(externals_src)/pidip/doc/*.pd $(helpdir)/$(PIDIP_NAME) - install -p $(externals_src)/pidip/doc/*.pd $(objectsdir) + install -p $(externals_src)/pidip/doc/*.pd $(objectsdir)/$(PIDIP_NAME) install -d $(examplesdir)/$(PIDIP_NAME) install -p $(externals_src)/pidip/patches/*.* $(examplesdir)/$(PIDIP_NAME) # install -d $(manualsdir)/$(PIDIP_NAME) |