[PD-cvs] SF.net SVN: pure-data: [9763] trunk/externals/iem/iemguts/src/Makefile

zmoelnig at users.sourceforge.net zmoelnig at users.sourceforge.net
Mon May 5 15:57:23 CEST 2008


Revision: 9763
          http://pure-data.svn.sourceforge.net/pure-data/?rev=9763&view=rev
Author:   zmoelnig
Date:     2008-05-05 06:57:23 -0700 (Mon, 05 May 2008)

Log Message:
-----------
add debugging flag to CFLAGS

Modified Paths:
--------------
    trunk/externals/iem/iemguts/src/Makefile

Modified: trunk/externals/iem/iemguts/src/Makefile
===================================================================
--- trunk/externals/iem/iemguts/src/Makefile	2008-05-05 13:53:34 UTC (rev 9762)
+++ trunk/externals/iem/iemguts/src/Makefile	2008-05-05 13:57:23 UTC (rev 9763)
@@ -62,7 +62,7 @@
 
 pd_linux: $(TARGETS)
 
-LINUXCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer -fPIC \
+LINUXCFLAGS = -DPD -g -O2 -funroll-loops -fomit-frame-pointer -fPIC \
     -Wall -W -Wshadow -Wstrict-prototypes \
     -Wno-unused -Wno-parentheses -Wno-switch
 
@@ -70,9 +70,11 @@
 
 LINUXINCLUDE =  -I$(PDSRCDIR)
 
+STRIP?=strip
+
 %.pd_linux: %.c
 	$(CC) $(LINUXLDFLAGS) $(LINUXCFLAGS) $(LINUXINCLUDE) -o $*.pd_linux $*.c
-	strip --strip-unneeded $*.pd_linux
+	$(STRIP) --strip-unneeded $*.pd_linux
 
 
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Pd-cvs mailing list