From 0ed7a8b68dd73e2b0473b8127aeca99f3bac9061 Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Wed, 1 Apr 2009 21:13:09 +0000 Subject: cleaned up grill externals - replaced with svn:externals to svn.grrrr.org/ext/trunk/ svn path=/trunk/; revision=10951 --- .../grill/flext/buildsys/win/max/config-cygwin.def | 51 ---------------------- .../grill/flext/buildsys/win/max/config-mingw.def | 42 ------------------ .../grill/flext/buildsys/win/max/config-msvc.def | 46 ------------------- .../flext/buildsys/win/max/gnumake-cygwin-ext.inc | 1 - .../buildsys/win/max/gnumake-cygwin-flext.inc | 6 --- .../flext/buildsys/win/max/gnumake-cygwin.inc | 10 ----- .../flext/buildsys/win/max/gnumake-mingw-ext.inc | 1 - .../flext/buildsys/win/max/gnumake-mingw-flext.inc | 6 --- .../grill/flext/buildsys/win/max/gnumake-mingw.inc | 12 ----- .../flext/buildsys/win/max/nmake-msvc-ext.inc | 1 - .../flext/buildsys/win/max/nmake-msvc-flext.inc | 5 --- .../grill/flext/buildsys/win/max/nmake-msvc.inc | 8 ---- 12 files changed, 189 deletions(-) delete mode 100644 externals/grill/flext/buildsys/win/max/config-cygwin.def delete mode 100644 externals/grill/flext/buildsys/win/max/config-mingw.def delete mode 100644 externals/grill/flext/buildsys/win/max/config-msvc.def delete mode 100644 externals/grill/flext/buildsys/win/max/gnumake-cygwin-ext.inc delete mode 100644 externals/grill/flext/buildsys/win/max/gnumake-cygwin-flext.inc delete mode 100644 externals/grill/flext/buildsys/win/max/gnumake-cygwin.inc delete mode 100644 externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc delete mode 100644 externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc delete mode 100644 externals/grill/flext/buildsys/win/max/gnumake-mingw.inc delete mode 100644 externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc delete mode 100644 externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc delete mode 100644 externals/grill/flext/buildsys/win/max/nmake-msvc.inc (limited to 'externals/grill/flext/buildsys/win/max') diff --git a/externals/grill/flext/buildsys/win/max/config-cygwin.def b/externals/grill/flext/buildsys/win/max/config-cygwin.def deleted file mode 100644 index a4562a73..00000000 --- a/externals/grill/flext/buildsys/win/max/config-cygwin.def +++ /dev/null @@ -1,51 +0,0 @@ -# where is the Max/MSP application? -MAXAPPPATH=/cygdrive/c/program\ files/MaxMSP\ 4.5 - -# where are the Max/MSP common files? -MAXCOMPATH=/cygdrive/c/program\ files/common\ files/Cycling\ \'74 - - -# where are the Max/MSP SDK header files? -# you should have the latest version! -MAXSDKPATH=$(MAXAPPPATH)/maxmspsdk_win/4.5\ headers/c74support - -############################################################### - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC=$(MAXCOMPATH)/flext - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -# (a good place is the MaxMSP program folder) -FLEXTSHLIB=$(MAXAPPPATH) - -############################################################### - -# where should the external be built? -# (path for temporary files) -OUTPATH=max-cygwin - -# where should the external be installed? -INSTPATH=$(MAXCOMPATH)/externals/flext - -# where should the initialization files be installed? -INITPATH=$(MAXCOMPATH)/init - -# where should the help files be installed? -HELPPATH=$(MAXAPPPATH)/max-help/flext - -############################################################### - -# user defined compiler flags -# (check if they match your system!) -UFLAGS=-msse -mfpmath=sse -ffast-math - -# user defined optimization flags -# (check if they match your system!) -OFLAGS=-O3 -# optimizations for Pentium 4 -OFLAGS+=-march=pentium4 diff --git a/externals/grill/flext/buildsys/win/max/config-mingw.def b/externals/grill/flext/buildsys/win/max/config-mingw.def deleted file mode 100644 index 9c9e3d4a..00000000 --- a/externals/grill/flext/buildsys/win/max/config-mingw.def +++ /dev/null @@ -1,42 +0,0 @@ -# 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 do/should the flext headers reside/be built? -FLEXTINC="%CommonProgramFiles%/Cycling '74/flext" - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -# (a good place is the MaxMSP program folder) -FLEXTSHLIB="%ProgramFiles%\MaxMSP 4.5" - -############################################################### - -# where should the external be built? -# (path for temporary files) -OUTPATH=max-mingw - -# where should the external be installed? -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" - -############################################################### - -# user defined compiler flags -# (check if they match your system!) -UFLAGS=-msse -ffast-math - -# user defined optimization flags -# (check if they match your system!) -OFLAGS=-O3 -# optimizations for Pentium 4 -OFLAGS+=-march=pentium4 diff --git a/externals/grill/flext/buildsys/win/max/config-msvc.def b/externals/grill/flext/buildsys/win/max/config-msvc.def deleted file mode 100644 index f67b6b7f..00000000 --- a/externals/grill/flext/buildsys/win/max/config-msvc.def +++ /dev/null @@ -1,46 +0,0 @@ -# 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" - -############################################################### - -# where do/should the flext headers reside/be built? -FLEXTINC="%CommonProgramFiles%\Cycling '74\flext" - -# where do/should the flext static libraries reside/be built? -FLEXTLIB=$(FLEXTINC) - -# where do/should the flext shared libraries reside/be built? -# (a good place is the MaxMSP program folder) -FLEXTSHLIB="%ProgramFiles%\MaxMSP 4.5" - -############################################################### - -# where should the external be built? -# (path for temporary files) -OUTPATH=max-msvc - -# where should the external be installed? -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 -# (don't use this if you want to distribute the built product) -#DYNAMIC=1 diff --git a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-ext.inc b/externals/grill/flext/buildsys/win/max/gnumake-cygwin-ext.inc deleted file mode 100644 index 5df7e2f2..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=mxe diff --git a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-flext.inc b/externals/grill/flext/buildsys/win/max/gnumake-cygwin-flext.inc deleted file mode 100644 index 60cd079a..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-cygwin-flext.inc +++ /dev/null @@ -1,6 +0,0 @@ -ifdef SHARED -EXT=dll -else -EXT=a -endif - diff --git a/externals/grill/flext/buildsys/win/max/gnumake-cygwin.inc b/externals/grill/flext/buildsys/win/max/gnumake-cygwin.inc deleted file mode 100644 index f0ceced1..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-cygwin.inc +++ /dev/null @@ -1,10 +0,0 @@ -DEFS += -DFLEXT_SYS=1 - -# fpack-struct should align to 2 bytes... can't specify that... -CFLAGS += -DWINVER=0x0501 -D_WIN32_WINNT=0x501 - -INCPATH += -I$(MAXSDKPATH)/max-includes -I$(MAXSDKPATH)/jit-includes -I$(MAXSDKPATH)/msp-includes -LIBPATH += -L$(MAXSDKPATH)/max-includes -L$(MAXSDKPATH)/jit-includes -L$(MAXSDKPATH)/msp-includes - -# these are both in MAXSDKPATH -SYSLIBS += -lMaxAPI -lMaxAudio diff --git a/externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc b/externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc deleted file mode 100644 index 04e59462..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-mingw-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=mxe diff --git a/externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc b/externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc deleted file mode 100644 index 821d6fbc..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-mingw-flext.inc +++ /dev/null @@ -1,6 +0,0 @@ -ifdef SHARED -EXT=dll -else -EXT=LIB -endif - diff --git a/externals/grill/flext/buildsys/win/max/gnumake-mingw.inc b/externals/grill/flext/buildsys/win/max/gnumake-mingw.inc deleted file mode 100644 index 1baa82f9..00000000 --- a/externals/grill/flext/buildsys/win/max/gnumake-mingw.inc +++ /dev/null @@ -1,12 +0,0 @@ -DEFS += -DFLEXT_SYS=1 - -# fpack-struct should align to 2 bytes... can't specify that... -CFLAGS += -DWINVER=0x0501 -D_WIN32_WINNT=0x501 -# suppress multiple symbol errors -LDFLAGS += -Wl,--allow-multiple-definition - -INCPATH += -I$(MAXSDKPATH)/max-includes -I$(MAXSDKPATH)/jit-includes -I$(MAXSDKPATH)/msp-includes -LIBPATH += -L$(MAXSDKPATH)/max-includes -L$(MAXSDKPATH)/jit-includes -L$(MAXSDKPATH)/msp-includes - -# these are both in MAXSDKPATH -SYSLIBS += -lMaxAPI -lMaxAudio diff --git a/externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc b/externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc deleted file mode 100644 index 04e59462..00000000 --- a/externals/grill/flext/buildsys/win/max/nmake-msvc-ext.inc +++ /dev/null @@ -1 +0,0 @@ -EXT=mxe diff --git a/externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc b/externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc deleted file mode 100644 index d30a7144..00000000 --- a/externals/grill/flext/buildsys/win/max/nmake-msvc-flext.inc +++ /dev/null @@ -1,5 +0,0 @@ -!ifdef SHARED -EXT=dll -!else -EXT=lib -!endif diff --git a/externals/grill/flext/buildsys/win/max/nmake-msvc.inc b/externals/grill/flext/buildsys/win/max/nmake-msvc.inc deleted file mode 100644 index 089e5a57..00000000 --- a/externals/grill/flext/buildsys/win/max/nmake-msvc.inc +++ /dev/null @@ -1,8 +0,0 @@ -DEFS=$(DEFS) /DFLEXT_SYS=1 -CFLAGS=$(CFLAGS) /Zp2 /DWINVER=0x0501 /D_WIN32_WINNT=0x501 - -INCPATH=$(INCPATH) /I$(MAXSDKPATH)\max-includes /I$(MAXSDKPATH)\jit-includes /I$(MAXSDKPATH)\msp-includes -LIBPATH=$(LIBPATH) /LIBPATH:$(MAXSDKPATH)\max-includes /LIBPATH:$(MAXSDKPATH)\jit-includes /LIBPATH:$(MAXSDKPATH)\msp-includes - -# these are both in MAXSDKPATH -LIBS=$(LIBS) maxapi.lib maxaudio.lib -- cgit v1.2.1