Revision: 10023 http://pure-data.svn.sourceforge.net/pure-data/?rev=10023&view=rev Author: zmoelnig Date: 2008-06-18 05:54:48 -0700 (Wed, 18 Jun 2008)
Log Message: ----------- try to avoid copying the binaries to a file "lib" if the directory "lib/" does not exist
Modified Paths: -------------- trunk/externals/iemlib/Make.include
Modified: trunk/externals/iemlib/Make.include =================================================================== --- trunk/externals/iemlib/Make.include 2008-06-18 12:31:20 UTC (rev 10022) +++ trunk/externals/iemlib/Make.include 2008-06-18 12:54:48 UTC (rev 10023) @@ -12,7 +12,7 @@ #select either the DBG and OPT compiler flags below: CFLAGS = -DPD -DUNIX -W -Werror -Wno-unused \ -Wno-parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -fno-strict-aliasing \ - -DDL_OPEN -fPIC + -DDL_OPEN -fPIC -fno-stack-protector
INCLUDE = -I. -I$(PDSOURCE) @@ -34,7 +34,7 @@ @echo :: $(OBJ) ld $(LDFLAGS) -o $(TARGET).$(EXT) *.o $(LIB) strip --strip-unneeded $(TARGET).$(EXT) - -cp $(TARGET).$(EXT) ../../lib + -cp $(TARGET).$(EXT) ../../lib/
$(OBJ) : %.o : %.c touch $*.c
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.