[PD-cvs] externals Makefile,1.8,1.9

Hans-Christoph Steiner eighthave at users.sourceforge.net
Sun Nov 27 06:02:18 CET 2005


Update of /cvsroot/pure-data/externals
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15088

Modified Files:
	Makefile 
Log Message:
lots of build bug fixes and additions, including pixeltango and lots of binary files, including many flext externals. this will probably be pd-0.38.4-extended-RC5

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/Makefile,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** Makefile	26 Nov 2005 06:58:34 -0000	1.8
--- Makefile	27 Nov 2005 05:02:15 -0000	1.9
***************
*** 60,64 ****
  install: all $(objectsdir) help_install objects_install unfiltered_install \
   creb_install cyclone_install iemabs_install iemabs_install iemmatrix_install \
!  pddp_install pdp_install pmpd_install toxy_install vbap_install zexy_install
  	@echo " "
  	@echo "externals install succeeded!"
--- 60,65 ----
  install: all $(objectsdir) help_install objects_install unfiltered_install \
   creb_install cyclone_install iemabs_install iemabs_install iemmatrix_install \
!  pddp_install pdp_install pmpd_install toxy_install unauthorized_install \
! 	vbap_install zexy_install
  	@echo " "
  	@echo "externals install succeeded!"
***************
*** 198,203 ****
  #	install -d $(manualsdir)/$(CYCLONE_NAME)
  	install -d $(examplesdir)/$(CYCLONE_NAME)
! 	install -p $(externals_src)/miXed/test/cyclone/*.*  \
! 		$(examplesdir)/$(CYCLONE_NAME)
  
  
--- 199,204 ----
  #	install -d $(manualsdir)/$(CYCLONE_NAME)
  	install -d $(examplesdir)/$(CYCLONE_NAME)
! 	cd $(externals_src)/miXed/test/cyclone && \
! 		install -p *.* $(examplesdir)/$(CYCLONE_NAME)
  
  
***************
*** 216,224 ****
  	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(IEMABS_NAME) \
  		--description "a collection of objects written at IEM/KUG"
! 	install -p $(shell ls -1 $(externals_src)/iemlib/iemabs/*.pd | grep -v 'help') \
! 		$(objectsdir)/$(IEMABS_NAME)
  	install -d $(helpdir)/$(IEMABS_NAME)
! 	install -p $(externals_src)/iemlib/iemabs/*help*.pd \
! 		$(helpdir)/$(IEMABS_NAME)
  	install -p $(externals_src)/iemlib/iemabs/*.mp3 $(helpdir)/$(IEMABS_NAME)
  	install -p $(externals_src)/iemlib/iemabs/*.wav $(helpdir)/$(IEMABS_NAME)
--- 217,226 ----
  	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(IEMABS_NAME) \
  		--description "a collection of objects written at IEM/KUG"
! 	cd $(externals_src)/iemlib/iemabs/ && \
! 		install -p $(shell cd $(externals_src)/iemlib/iemabs/ && ls -1 *.pd | \
! 			grep -v 'help') $(objectsdir)/$(IEMABS_NAME)
  	install -d $(helpdir)/$(IEMABS_NAME)
! 	cd $(externals_src)/iemlib/iemabs/ && \
! 		install -p *help*.pd $(helpdir)/$(IEMABS_NAME)
  	install -p $(externals_src)/iemlib/iemabs/*.mp3 $(helpdir)/$(IEMABS_NAME)
  	install -p $(externals_src)/iemlib/iemabs/*.wav $(helpdir)/$(IEMABS_NAME)
***************
*** 298,308 ****
  
  pdp_install: pdp
! #	install -d $(objectsdir)/$(PDP_NAME)
! #	install -p $(externals_src)/pdp/*.$(EXTENSION) $(objectsdir)
! #	install -p $(externals_src)/pidip/*.$(EXTENSION) $(objectsdir)
! #	install -p $(externals_src)/gem2pdp/*.$(EXTENSION) $(objectsdir)
! 	install -p $(externals_src)/pdp/abstractions/*.pd $(objectsdir)
! #	install -d $(helpdir)/$(PDP_NAME)
! 	install -p $(externals_src)/pdp/doc/objects/*.* $(helpdir)
  	install -d $(manualsdir)/$(PDP_NAME)
  	install -p $(externals_src)/pdp/doc/reference.txt $(manualsdir)/$(PDP_NAME)
--- 300,313 ----
  
  pdp_install: pdp
! 	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 -p $(externals_src)/pdp/*.$(EXTENSION) $(objectsdir)/$(PDP_NAME)
! 	-install -p $(externals_src)/gem2pdp/*.$(EXTENSION) $(objectsdir)/$(PDP_NAME)
! 	install -p $(externals_src)/pdp/abstractions/*.pd $(objectsdir)/$(PDP_NAME)
! 	install -d $(helpdir)/$(PDP_NAME)
! 	install -p $(externals_src)/pdp/doc/objects/*.* $(helpdir)/$(PDP_NAME)
  	install -d $(manualsdir)/$(PDP_NAME)
  	install -p $(externals_src)/pdp/doc/reference.txt $(manualsdir)/$(PDP_NAME)
***************
*** 314,317 ****
--- 319,345 ----
  
  
+ #------------------------------------------------------------------------------#
+ # PIDIP
+ PIDIP_NAME=pidip
+ pidip:
+ #	cd $(externals_src)/pidip && ./configure && $(MAKE)
+ 
+ pidip_install: pidip
+ 	install -d $(objectsdir)/$(PIDIP_NAME)
+ 	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(PIDIP_NAME) \
+ 		--author "Yves Degoyon" \
+ 		--description "PiDiP is Definitely in Pieces"
+ 	-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 -d $(examplesdir)/$(PIDIP_NAME)
+ 	install -p $(externals_src)/pidip/patches/*.* $(examplesdir)/$(PIDIP_NAME)
+ 	install -d $(examplesdir)/$(PIDIP_NAME)/images
+ 	install -p $(externals_src)/pidip/patches/images/*.* \
+ 		$(examplesdir)/$(PIDIP_NAME)/images
+ 	install -d $(examplesdir)/$(PIDIP_NAME)/morphology
+ 	install -p $(externals_src)/pidip/patches/morphology/*.* \
+ 		$(examplesdir)/$(PIDIP_NAME)/morphology
+ 
  
  #------------------------------------------------------------------------------#
***************
*** 324,329 ****
  #	install -d $(objectsdir)/$(PMPD_NAME)
  	install -d $(helpdir)/$(PMPD_NAME)
! 	install -p $(externals_src)/pmpd/help/*.pd \
! 		 $(helpdir)/$(PMPD_NAME)
  	install -d $(manualsdir)/$(PMPD_NAME)
  	install -d $(manualsdir)/$(PMPD_NAME)
--- 352,356 ----
  #	install -d $(objectsdir)/$(PMPD_NAME)
  	install -d $(helpdir)/$(PMPD_NAME)
! 	install -p $(externals_src)/pmpd/help/*.pd $(helpdir)
  	install -d $(manualsdir)/$(PMPD_NAME)
  	install -d $(manualsdir)/$(PMPD_NAME)
***************
*** 361,364 ****
--- 388,416 ----
  
  
+ #------------------------------------------------------------------------------#
+ # UNAUTHORIZED
+ UNAUTHORIZED_NAME=unauthorized
+ # unauthorized is compiled straight into $(OUT_DIR)
+ UNAUTHORIZED_OUT_DIR=$(objectsdir)/$(UNAUTHORIZED_NAME)
+ unauthorized:
+ 
+ 
+ unauthorized_install: unauthorized
+ # this needs to go here since it produces errors
+ 	-cd $(externals_src)/unauthorized && $(MAKE) -k
+ 	install -d $(objectsdir)/$(UNAUTHORIZED_NAME)
+ 	install -p $(externals_src)/unauthorized/*/*.$(EXTENSION) \
+ 		$(objectsdir)/$(UNAUTHORIZED_NAME)
+ 	install -d $(helpdir)/$(UNAUTHORIZED_NAME)
+ 	install -p $(externals_src)/unauthorized/*/*.pd \
+ 		$(helpdir)/$(UNAUTHORIZED_NAME)
+ 	install -p $(externals_src)/unauthorized/*/*.txt \
+ 		$(helpdir)/$(UNAUTHORIZED_NAM)
+ 	install -p $(externals_src)/unauthorized/*/*.pls \
+ 		$(helpdir)/$(UNAUTHORIZED_NAME)
+ 	install -d $(helpdir)/$(UNAUTHORIZED_NAME)/blm
+ 	install -p $(externals_src)/unauthorized/blinkenlights/blm/*.* \
+ 		$(helpdir)/$(UNAUTHORIZED_NAME)/blm
+ 
  
  #------------------------------------------------------------------------------#
***************
*** 391,399 ****
  	install -d $(objectsdir)/$(ZEXY_NAME)
  #	install -p $(externals_src)/zexy/src/*.$(EXTENSION) $(objectsdir)/$(ZEXY_NAME)
! 	install -p $(shell ls -1 $(externals_src)/zexy/abs/*.pd | \
! 		grep -v '-help.pd' | sed 's/\([&<>|~]\)/\\\1/g') \
  		$(objectsdir)/$(ZEXY_NAME)
  	install -d $(helpdir)/$(ZEXY_NAME)
! 	install -p $(externals_src)/zexy/abs/*-help.pd $(helpdir)/$(ZEXY_NAME)
  	install -p $(externals_src)/zexy/zexy.pd  $(helpdir)
  	install -p $(externals_src)/zexy/examples/*.* $(helpdir)/$(ZEXY_NAME)
--- 443,453 ----
  	install -d $(objectsdir)/$(ZEXY_NAME)
  #	install -p $(externals_src)/zexy/src/*.$(EXTENSION) $(objectsdir)/$(ZEXY_NAME)
! 	install -p $(shell ls -1 $(externals_src)/zexy/abs/*.pd | grep -v '-help.pd' | sed 's|\(.*\)|"\1"|g') \
  		$(objectsdir)/$(ZEXY_NAME)
+ #		grep -v '-help.pd' | sed 's/\([&<>|~]\)/\\\1/g') \
+ 
  	install -d $(helpdir)/$(ZEXY_NAME)
! 	install -p $(shell ls -1 $(externals_src)/zexy/abs/*-help.pd | sed 's|\(.*\)|"\1"|g') \
! 		$(helpdir)/$(ZEXY_NAME)
  	install -p $(externals_src)/zexy/zexy.pd  $(helpdir)
  	install -p $(externals_src)/zexy/examples/*.* $(helpdir)/$(ZEXY_NAME)
***************
*** 432,444 ****
  	-install -p $(externals_src)/OSCx/src/*.$(EXTENSION) $(objectsdir)
  	install -p $(externals_src)/OSCx/doc/*.* $(helpdir)
- #----------------------------------------------------------------------------
- # unauthorized
- # these don't work on Windows yet
- 	-cd $(externals_src)/unauthorized && $(MAKE) 
- 	-install -p $(externals_src)/unauthorized/*/*.$(EXTENSION) $(objectsdir)
- 	install -p $(externals_src)/unauthorized/*/*.pd $(helpdir)
- 	install -p $(externals_src)/unauthorized/*/*.txt $(helpdir)
- 	install -p $(externals_src)/unauthorized/*/*.pls $(helpdir)
- 	cp -Rfp $(externals_src)/unauthorized/blinkenlights/blm  $(helpdir)
  
  
--- 486,489 ----
***************
*** 467,471 ****
  	cd $(externals_src)/mixed/pddp && make $(DEST_PATHS) clean
  	cd $(externals_src)/mixed/toxy && make $(DEST_PATHS) clean
! 	cd $(externals_src)/unauthorized && make $(DEST_PATHS) clean
  
  distclean: clean cruft_clean
--- 512,516 ----
  	cd $(externals_src)/mixed/pddp && make $(DEST_PATHS) clean
  	cd $(externals_src)/mixed/toxy && make $(DEST_PATHS) clean
! 	cd $(externals_src)/unauthorized && make clean
  
  distclean: clean cruft_clean





More information about the Pd-cvs mailing list