[PD-cvs] externals/grill/flext/buildsys/lnx gnumake-gcc-ext.inc, 1.7, 1.8 gnumake-gcc-flext.inc, 1.9, 1.10 gnumake-icc-ext.inc, 1.4, 1.5 gnumake-icc-flext.inc, 1.5, 1.6

Thomas Grill xovo at users.sourceforge.net
Sat Jan 20 15:26:03 CET 2007


Update of /cvsroot/pure-data/externals/grill/flext/buildsys/lnx
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2923/buildsys/lnx

Modified Files:
	gnumake-gcc-ext.inc gnumake-gcc-flext.inc gnumake-icc-ext.inc 
	gnumake-icc-flext.inc 
Log Message:
PD: possibility to create DSP objects without main DSP inlet (use FLEXT_DSP0_NEW or similar)
fixing typo
support for multiple archs under OSX
small fix for ppc arch
architecture-specific compiler flags for UB under OSX
fixed severe Altivec bug
changed eol-style
corrections to config build templates
added xcode 2.4 project
fixed atom sorting (now also respect symbol content)
no stripping of local symbols
some fixes, mostly OS X
updated build system for Max with MinGW
better default values
fixed bug in AtomList copying


Index: gnumake-icc-flext.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/lnx/gnumake-icc-flext.inc,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** gnumake-icc-flext.inc	6 Jul 2005 16:08:03 -0000	1.5
--- gnumake-icc-flext.inc	20 Jan 2007 14:26:01 -0000	1.6
***************
*** 22,28 ****
--- 22,30 ----
  
  $(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp
+ 	-mkdir -p $(dir $@)
  	icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  
  $(TARGETPATH)/%.o : $(SRCDIR)/%.c
+ 	-mkdir -p $(dir $@)
  	icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  

Index: gnumake-gcc-ext.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/lnx/gnumake-gcc-ext.inc,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** gnumake-gcc-ext.inc	13 Apr 2005 00:24:18 -0000	1.7
--- gnumake-gcc-ext.inc	20 Jan 2007 14:26:01 -0000	1.8
***************
*** 25,31 ****
--- 25,33 ----
  
  $(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp
+ 	-mkdir -p $(dir $@)
  	$(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  
  $(TARGETPATH)/%.o : $(SRCDIR)/%.c
+ 	-mkdir -p $(dir $@)
  	$(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  

Index: gnumake-icc-ext.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/lnx/gnumake-icc-ext.inc,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** gnumake-icc-ext.inc	13 Apr 2005 00:24:18 -0000	1.4
--- gnumake-icc-ext.inc	20 Jan 2007 14:26:01 -0000	1.5
***************
*** 22,31 ****
  
  $(TARGETPATH):
! 	mkdir -p $@
  
  $(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp
  	icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  
  $(TARGETPATH)/%.o : $(SRCDIR)/%.c
  	icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  
--- 22,33 ----
  
  $(TARGETPATH):
! 	-mkdir -p $@
  
  $(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp
+ 	-mkdir -p $(dir $@)
  	icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  
  $(TARGETPATH)/%.o : $(SRCDIR)/%.c
+ 	-mkdir -p $(dir $@)
  	icc -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  

Index: gnumake-gcc-flext.inc
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/lnx/gnumake-gcc-flext.inc,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** gnumake-gcc-flext.inc	6 Jul 2005 16:08:03 -0000	1.9
--- gnumake-gcc-flext.inc	20 Jan 2007 14:26:01 -0000	1.10
***************
*** 22,28 ****
--- 22,30 ----
  
  $(TARGETPATH)/%.opp : $(SRCDIR)/%.cpp
+ 	-mkdir -p $(dir $@)
  	$(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  
  $(TARGETPATH)/%.o : $(SRCDIR)/%.c
+ 	-mkdir -p $(dir $@)
  	$(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
  





More information about the Pd-cvs mailing list