[PD-cvs] externals Makefile,1.73,1.74

Hans-Christoph Steiner eighthave at users.sourceforge.net
Mon Jul 31 03:09:47 CEST 2006


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

Modified Files:
	Makefile 
Log Message:
added ekext to the build system; the help files need to be renamed to the standard

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/Makefile,v
retrieving revision 1.73
retrieving revision 1.74
diff -C2 -d -r1.73 -r1.74
*** Makefile	30 Jul 2006 17:26:52 -0000	1.73
--- Makefile	31 Jul 2006 01:09:45 -0000	1.74
***************
*** 108,115 ****
  # Pd-extended.  For libraries that build on all platforms, add them directly
  # below, otherwise add to the correct platforms below.
  #
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = boids bsaylor buildsrc corelibs creb cxc cyclone ext13 flib freeverb ggee hardware iem_ambi iem_bin_ambi iemlib iemmatrix loaders mapping markex maxlib mjlib motex oscx pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy
  
  # this is for libraries that don't compile (yet) on all platforms
--- 108,116 ----
  # Pd-extended.  For libraries that build on all platforms, add them directly
  # below, otherwise add to the correct platforms below.
+ 
  #
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = boids bsaylor buildsrc corelibs creb cxc cyclone ekext ext13 flib freeverb ggee hardware iem_ambi iem_bin_ambi iemlib iemmatrix loaders mapping markex maxlib mjlib motex oscx pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy
  
  # this is for libraries that don't compile (yet) on all platforms
***************
*** 498,501 ****
--- 499,538 ----
  
  #------------------------------------------------------------------------------#
+ # EKEXT
+ EKEXT_NAME=ekext
+ EKEXT_OBJECTS := $(wildcard $(externals_src)/ekext/*/*.c) \
+ $(wildcard $(externals_src)/ekext/*/*/*.c)
+ ekext: $(EKEXT_OBJECTS:.c=.$(EXTENSION))
+ 
+ ekext_install: ekext
+ 	install -d $(objectsdir)/$(EKEXT_NAME)
+ 	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(EKEXT_NAME) \
+ 		--author "Ed Kelly <morph_2016 at yahoo.co.uk>" \
+ 		--description "" \
+ 		--license "BSD" \
+ 		--version ""
+ 	install -p $(EKEXT_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(EKEXT_NAME)
+ 	install -d $(helpdir)/$(EKEXT_NAME)
+ 	install -p $(externals_src)/ekext/*/help-*.pd \
+ 		$(helpdir)/$(EKEXT_NAME)
+ #	install -d $(manualsdir)/$(EKEXT_NAME)
+ #	install -p $(externals_src)/ekext/manual.txt \
+ #		$(manualsdir)/$(EKEXT_NAME)
+ #	install -p $(externals_src)/ekext/README \
+ #		$(readmesdir)/$(EKEXT_NAME).txt
+ #	install -d $(examplesdir)/$(EKEXT_NAME)
+ #	install -p $(externals_src)/ekext/examples/*.pd \
+ #		$(examplesdir)/$(EKEXT_NAME)
+ 
+ ekext_clean:
+ 	-rm -f -- $(EKEXT_OBJECTS:.c=.$(EXTENSION))
+ 	-rm -f -- $(EKEXT_OBJECTS:.c=.o)
+ 	-rm -f -- $(externals_src)/ekext/*/*.bak
+ 	-rm -f -- $(externals_src)/ekext/*/*.*~
+ 
+ 
+ 
+ 
+ #------------------------------------------------------------------------------#
  # EXT13
  EXT13_NAME=ext13





More information about the Pd-cvs mailing list