Update of /cvsroot/pure-data/packages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20617
Modified Files: Makefile.buildlayout Log Message: created standard variable for the CPU type to support doing CPU-specific optimizations
Index: Makefile.buildlayout =================================================================== RCS file: /cvsroot/pure-data/packages/Makefile.buildlayout,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** Makefile.buildlayout 25 Jul 2007 20:32:47 -0000 1.34 --- Makefile.buildlayout 1 Nov 2007 03:44:12 -0000 1.35 *************** *** 54,57 **** --- 54,68 ---- EXTENSION = dll endif + # which CPU to compile for + UNAME := $(shell uname -m) + ifeq ($(UNAME),i386) + ARCH = i386 + endif + ifeq ($(UNAME),i686) + ARCH = i386 + endif + ifeq ($(UNAME),ppc) + ARCH = powerpc + endif
#==============================================================================#