[PD-cvs] externals Makefile,1.56,1.57

Hans-Christoph Steiner eighthave at users.sourceforge.net
Sat Apr 29 01:31:30 CEST 2006


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

Modified Files:
	Makefile 
Log Message:
added iem16 targets, but they are not auto included yet because of compilation issues

Index: Makefile
===================================================================
RCS file: /cvsroot/pure-data/externals/Makefile,v
retrieving revision 1.56
retrieving revision 1.57
diff -C2 -d -r1.56 -r1.57
*** Makefile	28 Apr 2006 23:07:36 -0000	1.56
--- Makefile	28 Apr 2006 23:31:28 -0000	1.57
***************
*** 807,810 ****
--- 807,844 ----
  
  #------------------------------------------------------------------------------#
+ # IEM16
+ IEM16_NAME=iem16
+ IEM16_OBJECTS := $(wildcard $(externals_src)/iem16/src/iem16_*.c)
+ iem16: $(IEM16_OBJECTS:.c=.$(EXTENSION))
+ 
+ iem16_install: iem16
+ 	install -d $(objectsdir)/$(IEM16_NAME)
+ 	$(scripts_src)/generate-libdir-metafile.sh $(objectsdir) $(IEM16_NAME) \
+ 		--author "IOhannes m zmoelnig" \
+ 		--description "16bit objects for low memory usage" \
+ 		--license "GNU GPL" \
+ 		--version "0.1"
+ 	install -p $(IEM16_OBJECTS:.c=.$(EXTENSION)) $(objectsdir)/$(IEM16_NAME)
+ #	install -d $(helpdir)/$(IEM16_NAME)
+ #	install -p $(externals_src)/iem16/help/*.pd \
+ #		$(helpdir)/$(IEM16_NAME)
+ #	install -d $(manualsdir)/$(IEM16_NAME)
+ #	install -p $(externals_src)/iem16/manual.txt \
+ #		$(manualsdir)/$(IEM16_NAME)
+ #	install -p $(externals_src)/iem16/README \
+ #		$(readmesdir)/$(IEM16_NAME).txt
+ 	install -d $(examplesdir)/$(IEM16_NAME)
+ 	install -p $(externals_src)/iem16/examples/*.pd \
+ 		$(examplesdir)/$(IEM16_NAME)
+ 
+ iem16_clean:
+ 	-rm -f -- $(IEM16_OBJECTS:.c=.$(EXTENSION))
+ 	-rm -f -- $(IEM16_OBJECTS:.c=.o)
+ 	-rm -f -- $(externals_src)/iem16/*.bak
+ 	-rm -f -- $(externals_src)/iem16/*.*~
+ 
+ 
+ 
+ #------------------------------------------------------------------------------#
  # IEMLIB
  IEMLIB_NAME=iemlib





More information about the Pd-cvs mailing list