Update of /cvsroot/pure-data/abstractions In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29717
Modified Files: Makefile Log Message: added pd-wavelet to the buildsystem
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/abstractions/Makefile,v retrieving revision 1.36 retrieving revision 1.37 diff -C2 -d -r1.36 -r1.37 *** Makefile 25 Jan 2007 20:26:30 -0000 1.36 --- Makefile 27 Jan 2007 12:44:02 -0000 1.37 *************** *** 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 --- 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 pd-wavelet
# in case anything needs to be compiled or processed somehow before installing *************** *** 443,447 **** 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" \ --- 443,447 ---- install -p $(abstractions_src)/footils/sssad/_sssad/*.pd $(objectsdir)/$(SSSAD_NAME)/_sssad $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(SSSAD_NAME) \ ! --author "Frank Barknecht" \ --description "Stupid-super-simplistic State-saving for PD" \ --license "same as Pd's license" \ *************** *** 460,463 **** --- 460,484 ----
+ #------------------------------------------------------------------------------- + # PDWAVELET + PDWAVELET_NAME = pd-wavelet + pd-wavelet_install: + install -d $(objectsdir)/$(PDWAVELET_NAME) + install -p $(abstractions_src)/pd-wavelet/*.pd \ + $(objectsdir)/$(PDWAVELET_NAME) + install -p $(abstractions_src)/pd-wavelet/abs/*.pd \ + $(objectsdir)/$(PDWAVELET_NAME) + $(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(PDWAVELET_NAME) \ + --author "Raul Diaz Poblete" \ + --description "manipulation of audio in the wavelet domain" \ + --license "GNU GPL v2" \ + --version "" + install -d $(examplesdir)/$(PDWAVELET_NAME) + install -p $(abstractions_src)/pd-wavelet/main.pd \ + $(examplesdir)/$(PDWAVELET_NAME) + install -d $(readmesdir) + install -p $(abstractions_src)/pd-wavelet/README.txt \ + $(readmesdir)/$(PDWAVELET_NAME).txt +
#==============================================================================#