diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-26 01:52:47 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2005-11-26 01:52:47 +0000 |
commit | 6c271c12023d3aff3e5043a456b156b68042738d (patch) | |
tree | 270582907b167f8075ecac3fdb231dbc01f4b8f4 /abstractions/Makefile | |
parent | 59bc5841c63961260c70979877df3fc781f8cf30 (diff) |
added in Jamie's dlopn patch so I can use his binaries; fixed a number of bugs reported on the list; added platform-specific noncvs handling
svn path=/trunk/; revision=4035
Diffstat (limited to 'abstractions/Makefile')
-rw-r--r-- | abstractions/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/abstractions/Makefile b/abstractions/Makefile index 3c5e2cc5..a71fff6c 100644 --- a/abstractions/Makefile +++ b/abstractions/Makefile @@ -90,6 +90,7 @@ objects_la-kitchen: install -p $(shell ls -1 $(ABSTRACTIONS_SRC)/La-kitchen/*.pd | \
grep -v '\-help.pd') $(OBJECTS_DEST)/$(LA-KITCHEN_NAME)
$(SCRIPTS_SRC)/generate-libdir-metafile.sh $(OBJECTS_DEST) $(LA-KITCHEN_NAME) \
+ --author "Charles Verron" \
--description "a collection of objects working with sensors"
install -d $(HELP_DEST)/$(LA-KITCHEN_NAME)
install -p $(ABSTRACTIONS_SRC)/La-kitchen/*-help.pd \
@@ -204,6 +205,22 @@ objects_pddp: RRADICAL_NAME = rradical
objects_rradical:
install -d $(OBJECTS_DEST)/$(RRADICAL_NAME)
+ $(SCRIPTS_SRC)/generate-libdir-metafile.sh $(OBJECTS_DEST) $(RRADICAL_NAME) \
+ --author "Frank Barknecht" \
+ --license "GNU GPL"
+ install -d $(OBJECTS_DEST)/$(RRADICAL_NAME)/control
+ install -p $(shell ls -1 $(ABSTRACTIONS_SRC)/rradical/control/*.* | \
+ grep -v '\-help.pd') $(OBJECTS_DEST)/$(RRADICAL_NAME)/control
+ install -d $(OBJECTS_DEST)/$(RRADICAL_NAME)/effects
+ install -p $(shell ls -1 $(ABSTRACTIONS_SRC)/rradical/effects/*.* | \
+ grep -v '\-help.pd') $(OBJECTS_DEST)/$(RRADICAL_NAME)/effects
+ install -d $(OBJECTS_DEST)/$(RRADICAL_NAME)/instruments
+ install -p $(shell ls -1 $(ABSTRACTIONS_SRC)/rradical/instruments/*.* | \
+ grep -v '\-help.pd') $(OBJECTS_DEST)/$(RRADICAL_NAME)/instruments
+ install -d $(OBJECTS_DEST)/$(RRADICAL_NAME)/stuff
+ install -p $(shell ls -1 $(ABSTRACTIONS_SRC)/rradical/stuff/*.* | \
+ grep -v '\-help.pd') $(OBJECTS_DEST)/$(RRADICAL_NAME)/stuff
+
applications_rradical:
install -d $(APPLICATIONS_DEST)/$(RRADICAL_NAME)
|