[PD-cvs] externals Makefile,1.98,1.99

Hans-Christoph Steiner eighthave at users.sourceforge.net
Tue Nov 28 19:39:52 CET 2006


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

Modified Files:
	Makefile 
Log Message:
made jasch_lib build with standard dev layout and with Pd-extended

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/Makefile,v
retrieving revision 1.98
retrieving revision 1.99
diff -C2 -d -r1.98 -r1.99
*** Makefile	26 Nov 2006 14:17:38 -0000	1.98
--- Makefile	28 Nov 2006 18:39:50 -0000	1.99
***************
*** 126,130 ****
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = boids bsaylor corelibs creb cxc cyclone deprecated ekext ext13 flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib loaders mapping markex maxlib mjlib motex mrpeach oscx pan pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy
  
  # this is for libraries that don't compile (yet) on all platforms
--- 126,130 ----
  # WARNING!  this MUST be all on one line because the automatic package
  # building scripts rely on it being that way.
! LIB_TARGETS = boids bsaylor corelibs creb cxc cyclone deprecated ekext ext13 flatspace flib freeverb ggee hardware hcs iem_ambi iem_bin_ambi iemlib jasch_lib loaders mapping markex maxlib mjlib motex mrpeach oscx pan pddp pdogg pmpd sigpack smlib toxy unauthorized vbap zexy
  
  # this is for libraries that don't compile (yet) on all platforms
***************
*** 1261,1264 ****
--- 1261,1299 ----
  
  #------------------------------------------------------------------------------#
+ # JASCH_LIB
+ JASCH_LIB_NAME=jasch_lib
+ JASCH_LIB_OBJECTS := $(wildcard $(externals_src)/jasch_lib/*/*.c)
+ jasch_lib: $(JASCH_LIB_OBJECTS:.c=.$(EXTENSION))
+ 
+ jasch_lib_install: jasch_lib
+ 	install -d $(objectsdir)/$(JASCH_LIB_NAME)
+ 	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(JASCH_LIB_NAME) \
+ 		--author "Jasch" \
+ 		--license "GNU GPLv2" \
+ 		--version ""
+ 	install -p $(JASCH_LIB_OBJECTS:.c=.$(EXTENSION)) \
+ 		$(objectsdir)/$(JASCH_LIB_NAME)
+ 	install -d $(helpdir)/$(JASCH_LIB_NAME)
+ 	install -p $(externals_src)/jasch_lib/*/*-help.pd \
+ 		$(helpdir)/$(JASCH_LIB_NAME)
+ #	install -d $(manualsdir)/$(JASCH_LIB_NAME)
+ #	install -p $(externals_src)/jasch_lib/manual.txt \
+ #		$(manualsdir)/$(JASCH_LIB_NAME)
+ #	install -d $(readmesdir)
+ #	install -p $(externals_src)/jasch_lib/README \
+ #		$(readmesdir)/$(JASCH_LIB_NAME).txt
+ #	install -d $(examplesdir)/$(JASCH_LIB_NAME)
+ #	install -p $(externals_src)/jasch_lib/examples/*.pd \
+ #		$(examplesdir)/$(JASCH_LIB_NAME)
+ 
+ jasch_lib_clean:
+ 	-rm -f -- $(JASCH_LIB_OBJECTS:.c=.$(EXTENSION))
+ 	-rm -f -- $(JASCH_LIB_OBJECTS:.c=.o)
+ 	-rm -f -- $(externals_src)/jasch_lib/*/*.bak
+ 	-rm -f -- $(externals_src)/jasch_lib/*/*.*~
+ 
+ 
+ 
+ #------------------------------------------------------------------------------#
  # LOADERS
  LOADERS_NAME=





More information about the Pd-cvs mailing list