Update of /cvsroot/pure-data/abstractions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30249
Modified Files: Makefile Log Message: turned the pddp support objects into a libdir and moved them to the abstractions repository
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/abstractions/Makefile,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile 21 Nov 2005 04:49:15 -0000 1.10 --- Makefile 21 Nov 2005 16:26:19 -0000 1.11 *************** *** 33,38 ****
objects: $(OBJECTS_DEST) $(HELP_DEST) $(MANUALS_DEST) ! objects: objects_memento objects_nusmuk objects_rradical objects_keyboardkeys ! objects: objects_gyre objects_la-kitchen objects_nqpoly
applications: $(APPLICATIONS_DEST) $(MANUALS_DEST) --- 33,38 ----
objects: $(OBJECTS_DEST) $(HELP_DEST) $(MANUALS_DEST) ! objects: objects_gyre objects_keyboardkeys objects_la-kitchen objects_memento ! objects: objects_pddp objects_nusmuk objects_nqpoly objects_rradical
applications: $(APPLICATIONS_DEST) $(MANUALS_DEST) *************** *** 70,74 **** install -p $(ABSTRACTIONS_SRC)/$(KEYBOARDKEYS_NAME)/abs/*.pd \ $(OBJECTS_DEST)/$(KEYBOARDKEYS_NAME) ! $(SCRIPTS_SRC)/generate-libdir-metafile.sh $(OBJECTS_DEST) $(MEMENTO_NAME) \ --author "Andrey Savitsky" \ --description "objects for using keyboard keys for scrolling and selecting" --- 70,74 ---- install -p $(ABSTRACTIONS_SRC)/$(KEYBOARDKEYS_NAME)/abs/*.pd \ $(OBJECTS_DEST)/$(KEYBOARDKEYS_NAME) ! $(SCRIPTS_SRC)/generate-libdir-metafile.sh $(OBJECTS_DEST) $(KEYBOARDKEYS_NAME) \ --author "Andrey Savitsky" \ --description "objects for using keyboard keys for scrolling and selecting" *************** *** 182,185 **** --- 182,203 ----
+ + #------------------------------------------------------------------------------- + # PDDP support lib + PDDP_NAME = pddp + objects_pddp: + install -d $(OBJECTS_DEST)/$(PDDP_NAME) + install -p $(shell ls -1 $(ABSTRACTIONS_SRC)/pddp/*.pd | \ + grep -v '-help.pd') $(OBJECTS_DEST)/$(PDDP_NAME) + $(SCRIPTS_SRC)/generate-libdir-metafile.sh $(OBJECTS_DEST) $(PDDP_NAME) \ + --author "Hans-Christoph Steiner" \ + --license "GNU GPL" \ + --description "support objects for the Pure Data Documentation Project" + install -d $(HELP_DEST)/$(PDDP_NAME) + install -p $(ABSTRACTIONS_SRC)/pddp/*-help.pd \ + $(HELP_DEST)/$(PDDP_NAME) + # install -d $(MANUALS_DEST)/$(PDDP_NAME) + # install -d $(APPLICATIONS_DEST)/$(PDDP_NAME) + #------------------------------------------------------------------------------- # RRADical