aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/buildsys/mac/max
diff options
context:
space:
mode:
Diffstat (limited to 'externals/grill/flext/buildsys/mac/max')
-rw-r--r--externals/grill/flext/buildsys/mac/max/config-gcc.def75
-rw-r--r--externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc23
-rw-r--r--externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc20
-rw-r--r--externals/grill/flext/buildsys/mac/max/gnumake-gcc.inc6
4 files changed, 0 insertions, 124 deletions
diff --git a/externals/grill/flext/buildsys/mac/max/config-gcc.def b/externals/grill/flext/buildsys/mac/max/config-gcc.def
deleted file mode 100644
index cec5b624..00000000
--- a/externals/grill/flext/buildsys/mac/max/config-gcc.def
+++ /dev/null
@@ -1,75 +0,0 @@
-# where are the Max/MSP SDK header files?
-# you should have the latest version!
-MAXSDKPATH=/Applications/MaxMSP\ 4.6/MaxMSP-SDK/c74support
-
-###############################################################
-
-# prefix for flext installation
-# headers are in $(FLEXTPREFIX)/include/flext
-# libraries are in $(FLEXTPREFIX)/lib
-# build system is in $(FLEXTPREFIX)/lib/flext
-
-FLEXTPREFIX=/usr/local
-
-###############################################################
-
-# where should the external be built?
-OUTPATH=max-darwin
-
-# where should the external be installed?
-INSTPATH=/Library/Application\ Support/Cycling\ \'74/externals/flext
-
-# where should the initialization files be installed?
-INITPATH=/Library/Application\ Support/Cycling\ \'74/init
-
-# where should the help files be installed?
-HELPPATH=/Applications/MaxMSP\ 4.6/max-help/flext
-
-###############################################################
-
-# STK (synthesis tool kit) support
-# http://ccrma.stanford.edu/software/stk
-
-# where to find the STK header files (e.g. stk.h)
-STK_INC=/usr/local/include/stk
-
-# where to find the STK library (normally libstk.a)
-# (comment out STK_LIB if you don't use STK)
-#STK_LIB=/usr/local/lib/libstk.a
-
-###############################################################
-
-# SndObj support
-# http://music.nuim.ie//musictec/SndObj
-
-# where to find the SndObj header files (e.g. sndobj.h)
-SNDOBJ_INC=/usr/local/include/sndobj
-
-# where to find the SndObj library (normally libsndobj.a)
-# (comment out STK_LIB if you don't use SndObj)
-#SNDOBJ_LIB=/usr/local/lib/libsndobj.a
-
-###############################################################
-
-# user defined compiler flags
-UFLAGS += -ffast-math
-
-# user defined optimization flags
-OFLAGS += -Os -ftree-vectorize
-
-# user defined debugging flags
-DFLAGS +=
-
-# architecture-specific flags (optional)
-UFLAGS_ppc += -maltivec -faltivec
-OFLAGS_ppc += -mtune=G4
-DFLAGS_ppc +=
-
-UFLAGS_i386 += -mmmx -msse -msse2 -msse3
-OFLAGS_i386 += -mtune=prescott
-DFLAGS_i386 +=
-
-# cross-compilation (optional)
-#ARCH=i386 ppc
-#OSXSDK=/Developer/SDKs/MacOSX10.4u.sdk
-
diff --git a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc b/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc
deleted file mode 100644
index 5266a698..00000000
--- a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-ext.inc
+++ /dev/null
@@ -1,23 +0,0 @@
-EXT=mxo
-
-##############################################
-
-LDFLAGS += -bundle
-
-##############################################
-
-OBJPATH=$(OUTPATH)/$(OUTSUB)
-
-# bundle name (build site)
-INSTTARGET=$(OBJPATH)/$(OUTNAME).$(EXT)
-# folder inside bundle (build site)
-TARGETPATH=$(INSTTARGET)/Contents/MacOS
-# file inside bundle (build site)
-TARGET=$(TARGETPATH)/$(OUTNAME)
-
-# post build target
-TARGETPOST=$(INSTTARGET)/Contents/Pkginfo
-
-$(INSTTARGET)/Contents/Pkginfo:
- echo "iLaX????" >> $@
-
diff --git a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc b/externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc
deleted file mode 100644
index 3d526804..00000000
--- a/externals/grill/flext/buildsys/mac/max/gnumake-gcc-flext.inc
+++ /dev/null
@@ -1,20 +0,0 @@
-ifdef SHARED
-EXT=dylib
-else
-EXT=a
-endif
-
-##############################################
-
-LDFLAGS += -dynamiclib
-
-##############################################
-
-OBJPATH=$(OUTPATH)/$(OUTSUB)
-TARGETPATH=$(OBJPATH)
-
-TARGETNAME=$(OUTNAME).$(EXT)
-VERNAME=$(OUTNAME).$(FLEXTMAJOR).$(FLEXTMINOR).$(FLEXTMICRO).$(EXT)
-TARGET=$(TARGETPATH)/$(VERNAME)
-
-INSTTARGET=$(TARGET)
diff --git a/externals/grill/flext/buildsys/mac/max/gnumake-gcc.inc b/externals/grill/flext/buildsys/mac/max/gnumake-gcc.inc
deleted file mode 100644
index 44313f62..00000000
--- a/externals/grill/flext/buildsys/mac/max/gnumake-gcc.inc
+++ /dev/null
@@ -1,6 +0,0 @@
-DEFS += -DFLEXT_SYS=1
-
-INCPATH += -I$(MAXSDKPATH)/max-includes -I$(MAXSDKPATH)/jit-includes -I$(MAXSDKPATH)/msp-includes
-
-LDFLAGS += -framework MaxAPI -framework MaxAudioAPI
-