[PD-cvs] externals Makefile,1.129,1.130

Georg Holzmann grholzi at users.sourceforge.net
Thu Jan 25 21:53:03 CET 2007


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

Modified Files:
	Makefile 
Log Message:
added earplug~ to the buildsystem


Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/Makefile,v
retrieving revision 1.129
retrieving revision 1.130
diff -C2 -d -r1.129 -r1.130
*** Makefile	14 Jan 2007 12:19:42 -0000	1.129
--- Makefile	25 Jan 2007 20:53:01 -0000	1.130
***************
*** 125,129 ****
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = boids bsaylor creb cxc cyclone deprecated ekext ext13 flatspace flib freeverb ggee hardware hcs hidio iem_ambi iem_bin_ambi iemlib jasch_lib loaders mapping markex maxlib mjlib motex mrpeach msd oscx pan pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy pdcontainer adaptive iem_delay iem_roomsim iem_spec2 iem_tab flashserver iemgui iem_adaptfilt iemmatrix iemxmlrpc iem16
  
  # this is for libraries that don't compile (yet) on all platforms
--- 125,129 ----
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = boids bsaylor creb cxc cyclone deprecated ekext ext13 flatspace flib freeverb ggee hardware hcs hidio iem_ambi iem_bin_ambi iemlib jasch_lib loaders mapping markex maxlib mjlib motex mrpeach msd oscx pan pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy pdcontainer adaptive iem_delay iem_roomsim iem_spec2 iem_tab flashserver iemgui iem_adaptfilt iemmatrix iemxmlrpc iem16 earplug
  
  # this is for libraries that don't compile (yet) on all platforms
***************
*** 2647,2650 ****
--- 2647,2679 ----
  
  
+ #------------------------------------------------------------------------------#
+ # EARPLUG
+ EARPLUG_NAME=earplug~
+ EARPLUG_OBJECTS := $(wildcard $(externals_src)/earplug~/*.c)
+ earplug: $(EARPLUG_OBJECTS:.c=.$(EXTENSION))
+ 
+ earplug_install: earplug
+ 	install -d $(objectsdir)/$(EARPLUG_NAME)
+ 	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(EARPLUG_NAME) \
+ 		--author "Pei Xiang" \
+ 		--description "filters for binaural audio spatialization, based on KEMAR impulse measurement" \
+ 		--license "" \
+ 		--version ""
+ 	install -p $(EARPLUG_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(EARPLUG_NAME)
+ 	install -d $(helpdir)/$(EARPLUG_NAME)
+ 	install -p $(externals_src)/earplug~/*-help.pd \
+ 		$(helpdir)/$(EARPLUG_NAME)
+ 	install -d $(examplesdir)/$(EARPLUG_NAME)
+ 	install -p $(externals_src)/earplug~/*-help.pd \
+ 		   $(examplesdir)/$(EARPLUG_NAME)
+ 
+ earplug_clean:
+ 	-rm -f -- $(EARPLUG_OBJECTS:.c=.$(EXTENSION))
+ 	-rm -f -- $(EARPLUG_OBJECTS:.c=.o)
+ 	-rm -f -- $(externals_src)/earplug~/*.bak
+ 	-rm -f -- $(externals_src)/earplug~/*.*~
+ 
+ 
+ 
  #==============================================================================#
  #





More information about the Pd-cvs mailing list