Update of /cvsroot/pure-data/externals/grill/flext/buildsys/win/max In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12682/buildsys/win/max
Modified Files: config-mingw.def config-msvc.def gnumake-mingw-ext.inc gnumake-mingw-flext.inc nmake-msvc-ext.inc nmake-msvc-flext.inc Log Message: made default configurations generic two more flext tutorials fixes for Max headers cleanups updated build system updated tutorials revised the documentation updated for OSX upgraded version number
Index: nmake-msvc-ext.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** nmake-msvc-ext.inc 3 Jan 2005 05:00:30 -0000 1.1 --- nmake-msvc-ext.inc 5 Jan 2005 05:04:11 -0000 1.2 *************** *** 1 **** ! EXT=mxe --- 1 ---- ! EXT=mxe
Index: gnumake-mingw-ext.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gnumake-mingw-ext.inc 3 Jan 2005 05:00:30 -0000 1.1 --- gnumake-mingw-ext.inc 5 Jan 2005 05:04:11 -0000 1.2 *************** *** 1 **** ! EXT=mxe --- 1 ---- ! EXT=mxe
Index: gnumake-mingw-flext.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** gnumake-mingw-flext.inc 3 Jan 2005 05:00:30 -0000 1.1 --- gnumake-mingw-flext.inc 5 Jan 2005 05:04:11 -0000 1.2 *************** *** 1,6 **** ! ifdef SHARED ! EXT=dll ! else ! EXT=LIB ! endif ! --- 1,6 ---- ! ifdef SHARED ! EXT=dll ! else ! EXT=LIB ! endif !
Index: config-msvc.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/max/config-msvc.def,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config-msvc.def 3 Jan 2005 05:00:30 -0000 1.2 --- config-msvc.def 5 Jan 2005 05:04:11 -0000 1.3 *************** *** 1,9 **** # where are the Max/MSP SDK header files? # you should have the latest version! ! MAXSDKPATH="c:\data\prog\audio\maxmspsdk_win\4.5 headers\c74support"
# where is MS VC++? # (not necessary if the build is run with the compiler environment) ! # MSVCPATH=C:\Programme\Microsoft Visual Studio .NET 2003\Vc7
############################################################### --- 1,9 ---- # where are the Max/MSP SDK header files? # you should have the latest version! ! MAXSDKPATH="%ProgramFiles%\MaxMSP 4.5\maxmspsdk_win\4.5 headers\c74support"
# where is MS VC++? # (not necessary if the build is run with the compiler environment) ! # MSVCPATH="%ProgramFiles%\Microsoft Visual Studio .NET 2003\Vc7"
############################################################### *************** *** 16,20 ****
# where do/should the flext shared libraries reside/be built? ! FLEXTSHLIB=$(FLEXTINC)
############################################################### --- 16,21 ----
# where do/should the flext shared libraries reside/be built? ! # (a good place is the MaxMSP program folder) ! FLEXTSHLIB="%ProgramFiles%\MaxMSP 4.5"
############################################################### *************** *** 27,35 **** INSTPATH="%CommonProgramFiles%\Cycling '74\externals\flext"
###############################################################
# some user-definable flags # (check if they match your system!) ! OFLAGS=/G6 /Ox /arch:SSE
# uncomment to link against dynamic C runtime libraries --- 28,44 ---- INSTPATH="%CommonProgramFiles%\Cycling '74\externals\flext"
+ # where should the initialization files be installed? + INITPATH="%CommonProgramFiles%\Cycling '74\init" + + # where should the help files be installed? + HELPPATH="%ProgramFiles%\MaxMSP 4.5\max-help\flext" + ###############################################################
# some user-definable flags # (check if they match your system!) ! OFLAGS=/Ox ! # optimizations for Pentium 4 ! #OFLAGS=$(OFLAGS) /G6 /arch:SSE
# uncomment to link against dynamic C runtime libraries
Index: config-mingw.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/max/config-mingw.def,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** config-mingw.def 3 Jan 2005 05:00:29 -0000 1.2 --- config-mingw.def 5 Jan 2005 05:04:11 -0000 1.3 *************** *** 1,9 **** # where are the Max/MSP SDK header files? # you should have the latest version! ! MAXSDKPATH="c:/data/prog/audio/maxmspsdk_win/4.5 headers/c74support" ! ! # where is MS VC++? ! # (not necessary if the build is run with the compiler environment) ! # MSVCPATH=C:/Programme/Microsoft Visual Studio .NET 2003/Vc7
############################################################### --- 1,5 ---- # where are the Max/MSP SDK header files? # you should have the latest version! ! MAXSDKPATH="%ProgramFiles%\MaxMSP 4.5/maxmspsdk_win/4.5 headers/c74support"
############################################################### *************** *** 16,20 ****
# where do/should the flext shared libraries reside/be built? ! FLEXTSHLIB=$(FLEXTINC)
############################################################### --- 12,17 ----
# where do/should the flext shared libraries reside/be built? ! # (a good place is the MaxMSP program folder) ! FLEXTSHLIB="%ProgramFiles%\MaxMSP 4.5"
############################################################### *************** *** 27,33 **** INSTPATH="%CommonProgramFiles%/Cycling '74/externals/flext"
###############################################################
# some user-definable flags # (check if they match your system!) ! OFLAGS=-O2 -march=pentium4 -msse --- 24,38 ---- INSTPATH="%CommonProgramFiles%/Cycling '74/externals/flext"
+ # where should the initialization files be installed? + INITPATH="%CommonProgramFiles%/Cycling '74/init" + + # where should the help files be installed? + HELPPATH="%ProgramFiles%/MaxMSP 4.5/max-help/flext" + ###############################################################
# some user-definable flags # (check if they match your system!) ! OFLAGS=-O2 ! # optimizations for Pentium 4 ! #OFLAGS += -march=pentium4 -msse
Index: nmake-msvc-flext.inc =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** nmake-msvc-flext.inc 3 Jan 2005 05:00:30 -0000 1.1 --- nmake-msvc-flext.inc 5 Jan 2005 05:04:11 -0000 1.2 *************** *** 1,5 **** ! !ifdef SHARED ! EXT=dll ! !else ! EXT=lib ! !endif --- 1,5 ---- ! !ifdef SHARED ! EXT=dll ! !else ! EXT=lib ! !endif