Update of /cvsroot/pure-data/abstractions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21643
Modified Files: Makefile Log Message: added sssad and timestretch to the buildsystem
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/abstractions/Makefile,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** Makefile 25 Jan 2007 20:03:29 -0000 1.35 --- Makefile 25 Jan 2007 20:26:30 -0000 1.36 *************** *** 28,32 **** # WARNING! this MUST be all on one line because the automatic package # building scripts rely on it being that way. ! LIB_TARGETS = gyre jmmmp keyboardkeys la-kitchen list-abs memento nusmuk nqpoly parazit pddp pixeltango purepd rradical rtc-lib puremeasurement
# in case anything needs to be compiled or processed somehow before installing --- 28,32 ---- # WARNING! this MUST be all on one line because the automatic package # building scripts rely on it being that way. ! LIB_TARGETS = gyre jmmmp keyboardkeys la-kitchen list-abs memento nusmuk nqpoly parazit pddp pixeltango purepd rradical rtc-lib puremeasurement timestretch sssad
# in case anything needs to be compiled or processed somehow before installing *************** *** 412,415 **** --- 412,464 ----
+ #------------------------------------------------------------------------------- + # TIMESTRETCH + TIMESTRETCH_NAME = timestretch + timestretch_install: + install -d $(objectsdir)/$(TIMESTRETCH_NAME) + install -p $(abstractions_src)/timestretch/*.pd $(objectsdir)/$(TIMESTRETCH_NAME) + $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(TIMESTRETCH_NAME) \ + --author "" \ + --description "" \ + --license "" \ + --version "" + install -d $(helpdir)/$(TIMESTRETCH_NAME) + install -p $(abstractions_src)/timestretch/*-help.pd \ + $(helpdir)/$(TIMESTRETCH_NAME) + # install -d $(manualsdir)/$(TIMESTRETCH_NAME) + # install -p $(abstractions_src)/timestretch/doc/*.txt \ + # $(manualsdir)/$(TIMESTRETCH_NAME) + # install -d $(readmesdir) + # install -p $(abstractions_src)/timestretch/README \ + # $(readmesdir)/$(TIMESTRETCH_NAME).txt + + + #------------------------------------------------------------------------------- + # SSSAD + SSSAD_NAME = sssad + sssad_install: + install -d $(objectsdir)/$(SSSAD_NAME) + install -d $(objectsdir)/$(SSSAD_NAME)/_sssad + install -p $(abstractions_src)/footils/sssad/*.pd $(objectsdir)/$(SSSAD_NAME) + install -p $(abstractions_src)/footils/sssad/_sssad/*.pd $(objectsdir)/$(SSSAD_NAME)/_sssad + $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(SSSAD_NAME) \ + --author "Frank Barkneht" \ + --description "Stupid-super-simplistic State-saving for PD" \ + --license "same as Pd's license" \ + --version "" + install -d $(helpdir)/$(SSSAD_NAME) + install -p $(abstractions_src)/footils/sssad/*-help.pd \ + $(helpdir)/$(SSSAD_NAME) + install -p $(abstractions_src)/footils/sssad/_sssad/*-help.pd \ + $(helpdir)/$(SSSAD_NAME) + install -d $(examplesdir)/$(SSSAD_NAME) + install -p $(abstractions_src)/footils/sssad/sssad-example.pd \ + $(examplesdir)/$(SSSAD_NAME) + install -d $(readmesdir) + install -p $(abstractions_src)/footils/sssad/README.txt \ + $(readmesdir)/$(SSSAD_NAME).txt + + + #==============================================================================# #