Update of /cvsroot/pure-data/packages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4574
Modified Files: Makefile Makefile.buildlayout Log Message: more work on centralizing the CPU optimization flags. With GNU/Linux on PowerPC and Mac OS X on Intel, things are becoming more complicated... ;)
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/Makefile,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** Makefile 28 Apr 2006 16:07:12 -0000 1.31 --- Makefile 21 Jul 2006 00:22:52 -0000 1.32 *************** *** 86,92 ****
- - OPT_FLAGS = -O6 -funroll-loops -fomit-frame-pointer - # these are sent to all of the various Makefiles so that they all copy their # output to the same directory tree --- 86,89 ----
Index: Makefile.buildlayout =================================================================== RCS file: /cvsroot/pure-data/packages/Makefile.buildlayout,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** Makefile.buildlayout 25 May 2006 17:39:14 -0000 1.25 --- Makefile.buildlayout 21 Jul 2006 00:22:52 -0000 1.26 *************** *** 59,62 **** --- 59,73 ---- #==============================================================================# # + ## CFLAGS + # + #==============================================================================# + + # base level optimizations + OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer + + DEBUG_CFLAGS = -ggdb + + #==============================================================================# + # # DIRECTORY STRUCTURE #