[PD-cvs] externals Makefile,1.157,1.158

Thomas O Fredericks mrtof at users.sourceforge.net
Thu Oct 4 18:51:47 CEST 2007


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

Modified Files:
	Makefile 
Log Message:
Added tof the the externals Makefile



Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/Makefile,v
retrieving revision 1.157
retrieving revision 1.158
diff -C2 -d -r1.157 -r1.158
*** Makefile	29 Sep 2007 05:35:03 -0000	1.157
--- Makefile	4 Oct 2007 16:51:45 -0000	1.158
***************
*** 125,129 ****
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = adaptive boids bsaylor creb cxc cyclone deprecated earplug ekext ext13 flashserver flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib iemgui iem_adaptfilt iemmatrix iem_matrix iemxmlrpc iem_delay iem_roomsim iem_spec2 iem_tab jasch_lib loaders mapping markex maxlib mjlib moocow moonlib motex mrpeach msd oscx pan pdcontainer pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy
  
  # 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 = adaptive boids bsaylor creb cxc cyclone deprecated earplug ekext ext13 flashserver flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib iemgui iem_adaptfilt iemmatrix iem_matrix iemxmlrpc iem_delay iem_roomsim iem_spec2 iem_tab jasch_lib loaders mapping markex maxlib mjlib moocow moonlib motex mrpeach msd oscx pan pdcontainer pddp pdogg pmpd sigpack smlib tof toxy unauthorized vbap zexy
  
  # this is for libraries that don't compile (yet) on all platforms
***************
*** 2126,2129 ****
--- 2126,2162 ----
  
  #------------------------------------------------------------------------------#
+ # TOF
+ TOF_NAME=tof
+ TOF_OBJECTS := $(wildcard $(externals_src)/tof/src/*.c)
+ tof: $(TOF_OBJECTS:.c=.$(EXTENSION))
+ 
+ tof_install: tof
+ 	install -d $(objectsdir)/$(TOF_NAME)
+ 	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(TOF_NAME) \
+ 		--author "Thomas Ouellet Fredericks" \
+ 		--description "Various utilities" \
+ 		--license "http://www.kopimi.se/kopimi/" \
+ 		--version "1"
+ 	install -p $(TOF_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(TOF_NAME)
+ 	install -d $(helpdir)/$(TOF_NAME)
+ 	install -p $(externals_src)/tof/help/*.pd \
+ 		$(helpdir)/$(TOF_NAME)
+ #	install -d $(manualsdir)/$(TOF_NAME)
+ #	install -p $(externals_src)/tof/manual.txt \
+ #		$(manualsdir)/$(TOF_NAME)
+ #	install -d $(readmesdir)
+ #	install -p $(externals_src)/tof/README \
+ 		$(readmesdir)/$(TOF_NAME).txt
+ #	install -d $(examplesdir)/$(TOF_NAME)
+ #	install -p $(externals_src)/tof/examples/*.pd \
+ 		$(examplesdir)/$(TOF_NAME)
+ 
+ tof_clean:
+ 	-rm -f -- $(TOF_OBJECTS:.c=.$(EXTENSION))
+ 	-rm -f -- $(TOF_OBJECTS:.c=.o)
+ 	-rm -f -- $(externals_src)/tof/src/*.bak
+ 	-rm -f -- $(externals_src)/tof/src/*.*~
+ 
+ #------------------------------------------------------------------------------#
  # TOXY
  TOXY_NAME=toxy





More information about the Pd-cvs mailing list