Update of /cvsroot/pure-data/packages/linux_make In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21243/linux_make
Modified Files: Makefile Log Message: fixed linux package bug that left out pd-gui; tweaked optimization setup
Index: Makefile =================================================================== RCS file: /cvsroot/pure-data/packages/linux_make/Makefile,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Makefile 12 Dec 2005 02:17:04 -0000 1.4 --- Makefile 18 Dec 2005 21:40:50 -0000 1.5 *************** *** 19,22 **** --- 19,47 ----
+ # base level optimizations + OPT_CFLAGS = -O3 -funroll-loops -fomit-frame-pointer + + # Generic x86 (tune for Pentium III, since that's more common these days) + #OPT_CFLAGS += -mcpu=i386 -mtune=pentium3 + OPT_CFLAGS += -mcpu=pentium + + # INTEL + # + # Pentium MMX + #OPT_CFLAGS += -mcpu=pentium-mmx -mmmx + # Pentium Pro + #OPT_CFLAGS += -mcpu=pentiumpro -mmmx + # Pentium II/Celeron + #OPT_CFLAGS += -mfpmath=sse -mmmx -msse -mcpu=pentium2 + # Pentium III/Celeron2 + #OPT_CFLAGS += -mfpmath=sse -mmmx -msse -mcpu=pentium3 + # Pentium 4 + #OPT_CFLAGS += -mfpmath=sse -mmmx -msse -msse2 -mcpu=pentium4 + + # AMD + # + # Athlon XP K7 + #OPT_CFLAGS = -O3 -mcpu=athlon-xp -m3dnow -msse -mfpmath=sse + # these are sent to all of the various Makefiles so that they all copy their # output to the same directory tree *************** *** 25,28 **** --- 50,54 ---- DESTDIR=$(DESTDIR) \ prefix=$(prefix) \ + OPT_CFLAGS="$(OPT_CFLAGS)" \ UNAME=$(UNAME)