aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--externals/grill/dynext/build/package.txt8
-rw-r--r--externals/grill/fftease/build/package.txt15
-rw-r--r--externals/grill/flext/build/lnx/make-gcc.inc68
-rw-r--r--externals/grill/flext/build/lnx/pd/config-gcc.def15
-rw-r--r--externals/grill/flext/build/lnx/pd/make-gcc.inc43
-rw-r--r--externals/grill/flext/build/mac/make-gcc.inc68
-rw-r--r--externals/grill/flext/build/mac/pd/config-gcc.def18
-rw-r--r--externals/grill/flext/build/mac/pd/make-gcc.inc43
-rw-r--r--externals/grill/flext/build/win/make-bcc.inc85
-rw-r--r--externals/grill/flext/build/win/make-cygwin.inc68
-rw-r--r--externals/grill/flext/build/win/make-mingw.inc68
-rw-r--r--externals/grill/flext/build/win/make-msvc.inc68
-rw-r--r--externals/grill/flext/build/win/max/config-mingw.def17
-rw-r--r--externals/grill/flext/build/win/max/config-msvc.def17
-rw-r--r--externals/grill/flext/build/win/max/make-mingw.inc35
-rw-r--r--externals/grill/flext/build/win/max/make-msvc.inc35
-rw-r--r--externals/grill/flext/build/win/pd/config-bcc.def19
-rw-r--r--externals/grill/flext/build/win/pd/config-cygwin.def18
-rw-r--r--externals/grill/flext/build/win/pd/config-mingw.def15
-rw-r--r--externals/grill/flext/build/win/pd/config-msvc.def19
-rw-r--r--externals/grill/flext/build/win/pd/make-bcc.inc35
-rw-r--r--externals/grill/flext/build/win/pd/make-cygwin.inc43
-rw-r--r--externals/grill/flext/build/win/pd/make-mingw.inc34
-rw-r--r--externals/grill/flext/build/win/pd/make-msvc.inc34
-rw-r--r--externals/grill/pool/build/package.txt6
-rw-r--r--externals/grill/vasp/build/package.txt18
-rw-r--r--externals/grill/xsample/build/package.txt6
27 files changed, 0 insertions, 918 deletions
diff --git a/externals/grill/dynext/build/package.txt b/externals/grill/dynext/build/package.txt
deleted file mode 100644
index 79ea7e88..00000000
--- a/externals/grill/dynext/build/package.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-NAME=dyn~
-
-# all the source files from the package
-SRCDIR=src
-
-SRCS= main.cpp
-HDRS=
-
diff --git a/externals/grill/fftease/build/package.txt b/externals/grill/fftease/build/package.txt
deleted file mode 100644
index ea6b17c3..00000000
--- a/externals/grill/fftease/build/package.txt
+++ /dev/null
@@ -1,15 +0,0 @@
-NAME=fftease
-
-SRCDIR=src
-
-# all the source files from the package
-SRCS= \
- makewindows.c fold.c convert.c leanconvert.c fft4.c fft.c \
- main.cpp fftease.cpp \
- burrow~.cpp cross~.cpp dentist~.cpp disarray~.cpp drown~.cpp ether~.cpp \
- morphine~.cpp scrape~.cpp shapee~.cpp swinger~.cpp taint~.cpp \
- thresher~.cpp vacancy~.cpp xsyn~.cpp
-
-HDRS= \
- pv.h main.h
-
diff --git a/externals/grill/flext/build/lnx/make-gcc.inc b/externals/grill/flext/build/lnx/make-gcc.inc
deleted file mode 100644
index 3c474864..00000000
--- a/externals/grill/flext/build/lnx/make-gcc.inc
+++ /dev/null
@@ -1,68 +0,0 @@
-LDFLAGS += -shared -Wl,-x
-
-ifdef DEBUG
-CFLAGS += -g -D_DEBUG
-else
-CFLAGS += $(OFLAGS) -DNDEBUG
-LDFLAGS += -Wl,-S
-endif
-
-##############################################
-
-INCPATH += -I$(FLEXTPATH)
-LIBPATH += -L$(FLEXTPATH)
-
-ifdef SHARED
-# --- shared ---
-DEFS += -DFLEXT_SHARED
-
-else
-ifdef THREADED
-# --- static multi-threaded ---
-DEFS += -DFLEXT_THREADS
-
-else
-# --- static single-threaded ---
-
-endif
-endif
-
-##############################################
-
-TARGET=$(OUTPATH)/$(NAME).$(EXT)
-
-CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS)))
-CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS)))
-COBJS=$(patsubst %.c,$(OUTPATH)/%.o,$(filter %.c,$(SRCS)))
-CPPOBJS=$(patsubst %.cpp,$(OUTPATH)/%.opp,$(filter %.cpp,$(SRCS)))
-
-# default target
-all: $(OUTPATH) $(TARGET)
-
-$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS))
- touch $@
-
-$(OUTPATH):
- mkdir $(OUTPATH)
-
-$(OUTPATH)/%.opp : $(SRCDIR)/%.cpp
- $(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(OUTPATH)/%.o : $(SRCDIR)/%.c
- $(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(TARGET) : $(COBJS) $(CPPOBJS)
- $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $^ $(LIBS)
- chmod 755 $@
-
-$(INSTPATH):
- mkdir $(INSTPATH)
-
-install:: $(INSTPATH)
-
-install:: $(TARGET)
- install $^ $(INSTPATH)
-
-.PHONY: clean
-clean:
- $(RM) $(COBJS) $(CPPOBJS) $(TARGET)
diff --git a/externals/grill/flext/build/lnx/pd/config-gcc.def b/externals/grill/flext/build/lnx/pd/config-gcc.def
deleted file mode 100644
index 56ddc5d8..00000000
--- a/externals/grill/flext/build/lnx/pd/config-gcc.def
+++ /dev/null
@@ -1,15 +0,0 @@
-# where is the PD source package?
-PDPATH=/usr/local/src/pd-0.38-0test10
-
-# where should the external be installed?
-INSTPATH=/usr/local/lib/pd/extra
-
-# where do the flext headers and libraries reside?
-FLEXTPATH=/usr/local/lib/pd/flext
-
-# where should the external be built?
-OUTPATH=pd-linux
-
-# user defined compiler flags
-# (check if they match your system!)
-OFLAGS=-O2 -march=pentium4 -msse
diff --git a/externals/grill/flext/build/lnx/pd/make-gcc.inc b/externals/grill/flext/build/lnx/pd/make-gcc.inc
deleted file mode 100644
index 2db3fe3d..00000000
--- a/externals/grill/flext/build/lnx/pd/make-gcc.inc
+++ /dev/null
@@ -1,43 +0,0 @@
-DEFS += -DFLEXT_SYS=2
-
-INCPATH += -I$(PDPATH)/src
-LIBPATH += -L$(PDPATH)/bin
-
-LDFLAGS +=
-
-LIBS +=
-
-EXT=pd_linux
-
-#########################################
-
-ifdef SHARED
-# --- shared ---
-
-ifdef DEBUG
-LIBS += -lflext_d
-else
-LIBS += -lflext
-endif
-
-else
-ifdef THREADED
-# --- static multi-threaded ---
-
-ifdef DEBUG
-LIBS += $(FLEXTPATH)/libflext_td.a
-else
-LIBS += $(FLEXTPATH)/libflext_t.a
-endif
-
-else
-# --- static single-threaded ---
-
-ifdef DEBUG
-LIBS += $(FLEXTPATH)/libflext_d.a
-else
-LIBS += $(FLEXTPATH)/libflext.a
-endif
-
-endif
-endif
diff --git a/externals/grill/flext/build/mac/make-gcc.inc b/externals/grill/flext/build/mac/make-gcc.inc
deleted file mode 100644
index ffb49720..00000000
--- a/externals/grill/flext/build/mac/make-gcc.inc
+++ /dev/null
@@ -1,68 +0,0 @@
-LDFLAGS += -Wl,-x -framework ApplicationServices -framework vecLib
-
-ifdef DEBUG
-CFLAGS += -g -D_DEBUG
-else
-CFLAGS += $(OFLAGS) -DNDEBUG
-LDFLAGS += -Wl,-S
-endif
-
-##############################################
-
-INCPATH += -I$(FLEXTPATH)
-LIBPATH += -L$(FLEXTPATH)
-
-ifdef SHARED
-# --- shared ---
-DEFS += -DFLEXT_SHARED
-
-else
-ifdef THREADED
-# --- static multi-threaded ---
-DEFS += -DFLEXT_THREADS
-
-else
-# --- static single-threaded ---
-
-endif
-endif
-
-##############################################
-
-TARGET=$(OUTPATH)/$(NAME).$(EXT)
-
-CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS)))
-CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS)))
-COBJS=$(patsubst %.c,$(OUTPATH)/%.o,$(filter %.c,$(SRCS)))
-CPPOBJS=$(patsubst %.cpp,$(OUTPATH)/%.opp,$(filter %.cpp,$(SRCS)))
-
-# default target
-all: $(OUTPATH) $(TARGET)
-
-$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS))
- touch $@
-
-$(OUTPATH):
- mkdir $(OUTPATH)
-
-$(OUTPATH)/%.opp : $(SRCDIR)/%.cpp
- $(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(OUTPATH)/%.o : $(SRCDIR)/%.c
- $(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(TARGET) : $(COBJS) $(CPPOBJS)
- $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $^ $(LIBS)
- chmod 755 $@
-
-$(INSTPATH):
- mkdir $(INSTPATH)
-
-install:: $(INSTPATH)
-
-install:: $(TARGET)
- install $^ $(INSTPATH)
-
-.PHONY: clean
-clean:
- $(RM) $(COBJS) $(CPPOBJS) $(TARGET)
diff --git a/externals/grill/flext/build/mac/pd/config-gcc.def b/externals/grill/flext/build/mac/pd/config-gcc.def
deleted file mode 100644
index 6409e901..00000000
--- a/externals/grill/flext/build/mac/pd/config-gcc.def
+++ /dev/null
@@ -1,18 +0,0 @@
-# where is the PD installation?
-PDPATH=/usr/local/lib/pd
-
-# where is the PD executable?
-PDBIN=/usr/local/bin/pd
-
-# where should the external be installed?
-INSTPATH=$(PDPATH)/extra
-
-# where do the flext headers and libraries reside?
-FLEXTPATH=$(PDPATH)/flext
-
-# where should the external be built?
-OUTPATH=pd-darwin
-
-# user defined compiler flags
-# (check if they match your system!)
-OFLAGS=-O2 -mcpu=G4 -malign-natural -maltivec -faltivec
diff --git a/externals/grill/flext/build/mac/pd/make-gcc.inc b/externals/grill/flext/build/mac/pd/make-gcc.inc
deleted file mode 100644
index 560c6ebb..00000000
--- a/externals/grill/flext/build/mac/pd/make-gcc.inc
+++ /dev/null
@@ -1,43 +0,0 @@
-DEFS += -DFLEXT_SYS=2
-
-INCPATH += -I$(PDPATH)/src
-LIBPATH += -L$(PDPATH)/bin
-
-LDFLAGS += -bundle -bundle_loader $(PDBIN)
-
-LIBS +=
-
-EXT=pd_darwin
-
-#########################################
-
-ifdef SHARED
-# --- shared ---
-
-ifdef DEBUG
-LIBS += -lflext_d
-else
-LIBS += -lflext
-endif
-
-else
-ifdef THREADED
-# --- static multi-threaded ---
-
-ifdef DEBUG
-LIBS += $(FLEXTPATH)/libflext_td.a
-else
-LIBS += $(FLEXTPATH)/libflext_t.a
-endif
-
-else
-# --- static single-threaded ---
-
-ifdef DEBUG
-LIBS += $(FLEXTPATH)/libflext_d.a
-else
-LIBS += $(FLEXTPATH)/libflext.a
-endif
-
-endif
-endif
diff --git a/externals/grill/flext/build/win/make-bcc.inc b/externals/grill/flext/build/win/make-bcc.inc
deleted file mode 100644
index 2ef1acfc..00000000
--- a/externals/grill/flext/build/win/make-bcc.inc
+++ /dev/null
@@ -1,85 +0,0 @@
-INCPATH=$(INCPATH) -I$(FLEXTPATH)
-LIBPATH=$(LIBPATH) -L$(FLEXTPATH)
-
-!ifdef BCCPATH
-INCPATH=$(INCPATH) -I$(BCCPATH)\include
-LIBPATH=$(LIBPATH) -L$(BCCPATH)\lib
-!endif
-
-LIBS=$(LIBS) cw32.lib import32.lib C0D32.OBJ
-CFLAGS=$(CFLAGS) -tWD -tWM -w-8004 -w-8027 -w-8057
-LDFLAGS=$(LDFLAGS) /C /Tpd
-
-##############################################
-
-# use multithreaded static libraries
-!ifdef DEBUG
-CFLAGS=$(CFLAGS) -v -D_DEBUG
-LDFLAGS=$(LDFLAGS) /v
-!else
-CFLAGS=$(CFLAGS) $(OFLAGS) -DNDEBUG
-!endif
-
-!ifdef SHARED
-# --- shared ---
-DEFS=$(DEFS) -DFLEXT_SHARED
-
-!else
-!ifdef THREADED
-# --- static multi-threaded ---
-DEFS=$(DEFS) -DFLEXT_THREADS
-
-!else
-# --- static single-threaded ---
-
-!endif
-!endif
-
-##############################################
-
-TARGET=$(OUTPATH)\$(NAME).$(EXT)
-
-# default target
-all: $(OUTPATH) print $(TARGET)
-
-# convert both *.c and *.cpp
-OBJSTMP= $(SRCS:.c=.obj)
-OBJS= $(OBJSTMP:.objpp=.obj)
-
-print:
- echo $(OBJS)
-
-$(OUTPATH):
- @-if not exist $< mkdir $<
-
-SETUPFUNCTION=$(NAME)_setup
-
-$(OUTPATH)\$(NAME).def:
- @echo EXPORTS $(SETUPFUNCTION) = _$(SETUPFUNCTION) > $<
-# this next line fixes a strange problem with implib - lacking underscore?!
- @echo IMPORTS _rtext_retext=PD.rtext_retext >> $<
-
-{$(SRCDIR)}.cpp{}.obj:
- bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(OUTPATH) $<
-
-{$(SRCDIR)}.c{}.obj:
- bcc32 -c $(CFLAGS) $(DEFS) $(INCPATH) -n$(OUTPATH) $<
-
-$(TARGET) :: $(OUTPATH) $(OUTPATH)\$(NAME).def
-
-$(TARGET) :: $(OBJS)
- cd $(OUTPATH)
- ilink32 $(LDFLAGS) $(LIBPATH) $** ,..\$<,,$(LIBS),$(NAME).def
- cd ..
-
-$(INSTPATH):
- -mkdir $@
-
-# remove build
-clean:
- -del /q $(OUTPATH) > nul
- -rmdir $(OUTPATH) > nul
-
-# install build
-install: $(INSTPATH) $(TARGET)
- copy $(TARGET) $(INSTPATH) > nul
diff --git a/externals/grill/flext/build/win/make-cygwin.inc b/externals/grill/flext/build/win/make-cygwin.inc
deleted file mode 100644
index 3c474864..00000000
--- a/externals/grill/flext/build/win/make-cygwin.inc
+++ /dev/null
@@ -1,68 +0,0 @@
-LDFLAGS += -shared -Wl,-x
-
-ifdef DEBUG
-CFLAGS += -g -D_DEBUG
-else
-CFLAGS += $(OFLAGS) -DNDEBUG
-LDFLAGS += -Wl,-S
-endif
-
-##############################################
-
-INCPATH += -I$(FLEXTPATH)
-LIBPATH += -L$(FLEXTPATH)
-
-ifdef SHARED
-# --- shared ---
-DEFS += -DFLEXT_SHARED
-
-else
-ifdef THREADED
-# --- static multi-threaded ---
-DEFS += -DFLEXT_THREADS
-
-else
-# --- static single-threaded ---
-
-endif
-endif
-
-##############################################
-
-TARGET=$(OUTPATH)/$(NAME).$(EXT)
-
-CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS)))
-CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS)))
-COBJS=$(patsubst %.c,$(OUTPATH)/%.o,$(filter %.c,$(SRCS)))
-CPPOBJS=$(patsubst %.cpp,$(OUTPATH)/%.opp,$(filter %.cpp,$(SRCS)))
-
-# default target
-all: $(OUTPATH) $(TARGET)
-
-$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS))
- touch $@
-
-$(OUTPATH):
- mkdir $(OUTPATH)
-
-$(OUTPATH)/%.opp : $(SRCDIR)/%.cpp
- $(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(OUTPATH)/%.o : $(SRCDIR)/%.c
- $(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(TARGET) : $(COBJS) $(CPPOBJS)
- $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $^ $(LIBS)
- chmod 755 $@
-
-$(INSTPATH):
- mkdir $(INSTPATH)
-
-install:: $(INSTPATH)
-
-install:: $(TARGET)
- install $^ $(INSTPATH)
-
-.PHONY: clean
-clean:
- $(RM) $(COBJS) $(CPPOBJS) $(TARGET)
diff --git a/externals/grill/flext/build/win/make-mingw.inc b/externals/grill/flext/build/win/make-mingw.inc
deleted file mode 100644
index 3c4e4b1d..00000000
--- a/externals/grill/flext/build/win/make-mingw.inc
+++ /dev/null
@@ -1,68 +0,0 @@
-LDFLAGS += -shared -Wl,-x
-
-ifdef DEBUG
-CFLAGS += -g -D_DEBUG
-else
-CFLAGS += $(OFLAGS) -DNDEBUG
-LDFLAGS += -Wl,-S
-endif
-
-##############################################
-
-INCPATH += -I$(FLEXTPATH)
-LIBPATH += -L$(FLEXTPATH)
-
-ifdef SHARED
-# --- shared ---
-DEFS += -DFLEXT_SHARED
-
-else
-ifdef THREADED
-# --- static multi-threaded ---
-DEFS += -DFLEXT_THREADS
-
-else
-# --- static single-threaded ---
-
-endif
-endif
-
-##############################################
-
-TARGET=$(OUTPATH)/$(NAME).$(EXT)
-
-CSRCS=$(patsubst %.c,$(SRCDIR)/%.c,$(filter %.c,$(SRCS)))
-CPPSRCS=$(patsubst %.cpp,$(SRCDIR)/%.cpp,$(filter %.cpp,$(SRCS)))
-COBJS=$(patsubst %.c,$(OUTPATH)/%.o,$(filter %.c,$(SRCS)))
-CPPOBJS=$(patsubst %.cpp,$(OUTPATH)/%.opp,$(filter %.cpp,$(SRCS)))
-
-
-# default target
-all: $(OUTPATH) $(TARGET)
-
-#$(CSRCS) $(CPPSRCS): $(patsubst %,$(SRCDIR)/%,$(HDRS))
-# touch $@
-
-$(OUTPATH):
- -mkdir $(subst /,\,$@)
-
-$(OUTPATH)/%.opp : $(SRCDIR)/%.cpp
- $(CXX) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(OUTPATH)/%.o : $(SRCDIR)/%.c
- $(CC) -c $(CFLAGS) $(DEFS) $(INCPATH) $< -o $@
-
-$(TARGET) : $(COBJS) $(CPPOBJS)
- $(CXX) $(LDFLAGS) $(LIBPATH) -o $@ $^ $(LIBS)
-
-$(INSTPATH):
- -mkdir $(subst /,\,$@)
-
-install:: $(INSTPATH)
-
-install:: $(TARGET)
- copy $(subst /,\,$^ $(INSTPATH))
-
-.PHONY: clean
-clean:
- -del $(subst /,\,$(COBJS) $(CPPOBJS) $(TARGET))
diff --git a/externals/grill/flext/build/win/make-msvc.inc b/externals/grill/flext/build/win/make-msvc.inc
deleted file mode 100644
index 1fc06c8f..00000000
--- a/externals/grill/flext/build/win/make-msvc.inc
+++ /dev/null
@@ -1,68 +0,0 @@
-INCPATH=$(INCPATH) /I$(FLEXTPATH)
-LIBPATH=$(LIBPATH) /LIBPATH:$(FLEXTPATH)
-
-!ifdef MSVCPATH
-INCPATH=$(INCPATH) /I$(MSVCPATH)\include
-LIBPATH=$(LIBPATH) /LIBPATH:$(MSVCPATH)\lib
-!endif
-
-# for VC7 - enable exception handling
-CFLAGS=$(CFLAGS) /EHsc
-
-##############################################
-
-# use multithreaded static libraries
-!ifdef DEBUG
-CFLAGS=$(CFLAGS) /D_DEBUG /DMTd
-LDFLAGS=$(LDFLAGS) /DEBUG
-!else
-CFLAGS=$(CFLAGS) $(OFLAGS) /DNDEBUG /DMT
-LDFLAGS=$(LDFLAGS) /INCREMENTAL:NO
-!endif
-
-!ifdef SHARED
-# --- shared ---
-DEFS=$(DEFS) /DFLEXT_SHARED
-
-!elseifdef THREADED
-# --- static multi-threaded ---
-DEFS=$(DEFS) /DFLEXT_THREADS
-
-!else
-# --- static single-threaded ---
-
-!endif
-
-##############################################
-
-# default target
-all: $(OUTPATH) $(OUTPATH)\$(NAME).$(EXT)
-
-OBJS= $(SRCS:.c=.obj)
-OBJS= $(OBJS:.objpp=.obj)
-
-$(OUTPATH):
- -mkdir $(OUTPATH) > nul
-
-{$(SRCDIR)}.cpp{}.obj:
- cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(OUTPATH)\$@
-
-{$(SRCDIR)}.c{}.obj:
- cl /c /LD $(CFLAGS) $(DEFS) $(INCPATH) $** /Fo$(OUTPATH)\$@
-
-$(OUTPATH)\$(NAME).$(EXT): $(OBJS)
- cd $(OUTPATH)
- link /DLL $(LDFLAGS) /out:$(NAME).$(EXT) $** $(LIBS) $(LIBPATH)
- @-del *.exp
- @-del *.lib
- cd ..
-
-# remove build
-clean:
- -del /q $(OUTPATH) > nul
- -rmdir $(OUTPATH) > nul
-
-# install build
-install:
- @-if not exist $(INSTPATH) mkdir $(INSTPATH)
- copy $(OUTPATH)\$(NAME).$(EXT) $(INSTPATH) > nul
diff --git a/externals/grill/flext/build/win/max/config-mingw.def b/externals/grill/flext/build/win/max/config-mingw.def
deleted file mode 100644
index d6bbd4dc..00000000
--- a/externals/grill/flext/build/win/max/config-mingw.def
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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 should the external be installed?
-INSTPATH="%CommonProgramFiles%/Cycling '74/externals/flext"
-
-# where do the flext headers and libraries reside?
-FLEXTPATH="%CommonProgramFiles%/Cycling '74/flext"
-
-# where should the external be built?
-# (path for temporary files)
-OUTPATH=max-mingw
-
-# some user-definable flags
-# (check if they match your system!)
-OFLAGS=-O2 -march=pentium4 -msse
diff --git a/externals/grill/flext/build/win/max/config-msvc.def b/externals/grill/flext/build/win/max/config-msvc.def
deleted file mode 100644
index a7db2d2c..00000000
--- a/externals/grill/flext/build/win/max/config-msvc.def
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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 should the external be installed?
-INSTPATH="%CommonProgramFiles%\Cycling '74\externals\flext"
-
-# where do the flext headers and libraries reside?
-FLEXTPATH="%CommonProgramFiles%\Cycling '74\flext"
-
-# where should the external be built?
-# (path for temporary files)
-OUTPATH=max-msvc
-
-# some user-definable flags
-# (check if they match your system!)
-OFLAGS=/G6 /Ox /arch:SSE
diff --git a/externals/grill/flext/build/win/max/make-mingw.inc b/externals/grill/flext/build/win/max/make-mingw.inc
deleted file mode 100644
index c34825f8..00000000
--- a/externals/grill/flext/build/win/max/make-mingw.inc
+++ /dev/null
@@ -1,35 +0,0 @@
-DEFS += -DFLEXT_SYS=1
-CFLAGS += -fpack-struct=2
-
-INCPATH += -I$(MAXSDKPATH)/max-includes -I$(MAXSDKPATH)/msp-includes
-LIBPATH += -L$(MAXSDKPATH)/max-includes -L$(MAXSDKPATH)/msp-includes
-
-# these are both in PDPATH
-LIBS += -lmaxapi -lmaxaudio
-
-EXT=mxe
-
-#########################################
-
-ifdef SHARED
-# --- shared ---
-
-elseifdef THREADED
-# --- static multi-threaded ---
-
-ifdef DEBUG
-LIBS += -lflext_td-maxwin
-else
-LIBS += -lflext_t-maxwin
-endif
-
-else
-# --- static single-threaded ---
-
-ifdef DEBUG
-LIBS += -lflext_d-maxwin
-else
-LIBS += -lflext-maxwin
-endif
-
-endif
diff --git a/externals/grill/flext/build/win/max/make-msvc.inc b/externals/grill/flext/build/win/max/make-msvc.inc
deleted file mode 100644
index 636029fa..00000000
--- a/externals/grill/flext/build/win/max/make-msvc.inc
+++ /dev/null
@@ -1,35 +0,0 @@
-DEFS=$(DEFS) /DFLEXT_SYS=1
-CFLAGS=$(CFLAGS) /Zp2
-
-INCPATH=$(INCPATH) /I$(MAXSDKPATH)\max-includes /I$(MAXSDKPATH)\msp-includes
-LIBPATH=$(LIBPATH) /LIBPATH:$(MAXSDKPATH)\max-includes /LIBPATH:$(MAXSDKPATH)\msp-includes
-
-# these are both in MAXSDKPATH
-LIBS=$(LIBS) maxapi.lib maxaudio.lib
-
-EXT=mxe
-
-#########################################
-
-!ifdef SHARED
-# --- shared ---
-
-!elseifdef THREADED
-# --- static multi-threaded ---
-
-!ifdef DEBUG
-LIBS=$(LIBS) flext_td-maxwin.lib
-!else
-LIBS=$(LIBS) flext_t-maxwin.lib
-!endif
-
-!else
-# --- static single-threaded ---
-
-!ifdef DEBUG
-LIBS=$(LIBS) flext_d-maxwin.lib
-!else
-LIBS=$(LIBS) flext-maxwin.lib
-!endif
-
-!endif
diff --git a/externals/grill/flext/build/win/pd/config-bcc.def b/externals/grill/flext/build/win/pd/config-bcc.def
deleted file mode 100644
index b93cece3..00000000
--- a/externals/grill/flext/build/win/pd/config-bcc.def
+++ /dev/null
@@ -1,19 +0,0 @@
-# where is PD?
-PDPATH=c:\programme\audio\pd
-
-# where should the external be installed?
-INSTPATH=$(PDPATH)\extra
-
-# where do the flext headers and libraries reside?
-FLEXTPATH=$(PDPATH)\flext
-
-# where is BorlandC++?
-BCCPATH=C:\Programme\prog\bcc55
-
-# where should the external be built?
-OUTPATH=pd-bcc
-
-# user defined compiler flags
-# (check if they match your system!)
-OFLAGS=-6 -O2 -OS -ff -d
-
diff --git a/externals/grill/flext/build/win/pd/config-cygwin.def b/externals/grill/flext/build/win/pd/config-cygwin.def
deleted file mode 100644
index 1c92fe66..00000000
--- a/externals/grill/flext/build/win/pd/config-cygwin.def
+++ /dev/null
@@ -1,18 +0,0 @@
-# where is PD?
-# (it seems like cygwin compilation is only working if
-# there are no pthread.h and sched.h in the PD src subfolder
-# - these are provided by cygwin )
-PDPATH=/cygdrive/c/programme/audio/pd
-
-# where should the external be installed?
-INSTPATH=$(PDPATH)/extra
-
-# where do the flext headers and libraries reside?
-FLEXTPATH=$(PDPATH)/flext
-
-# where should the external be built?
-OUTPATH=pd-cygwin
-
-# user defined compiler flags
-# (check if they match your system!)
-OFLAGS=-O2 -march=pentium4 -msse
diff --git a/externals/grill/flext/build/win/pd/config-mingw.def b/externals/grill/flext/build/win/pd/config-mingw.def
deleted file mode 100644
index a721d45d..00000000
--- a/externals/grill/flext/build/win/pd/config-mingw.def
+++ /dev/null
@@ -1,15 +0,0 @@
-# where is PD?
-PDPATH=c:/programme/audio/pd
-
-# where should the external be installed?
-INSTPATH=$(PDPATH)/extra
-
-# where do the flext headers and libraries reside?
-FLEXTPATH=$(PDPATH)/flext
-
-# where should the external be built?
-OUTPATH=pd-mingw
-
-# user defined compiler flags
-# (check if they match your system!)
-OFLAGS=-O2 -march=pentium4 -msse
diff --git a/externals/grill/flext/build/win/pd/config-msvc.def b/externals/grill/flext/build/win/pd/config-msvc.def
deleted file mode 100644
index aa4c5feb..00000000
--- a/externals/grill/flext/build/win/pd/config-msvc.def
+++ /dev/null
@@ -1,19 +0,0 @@
-# where is PD?
-PDPATH=c:\programme\audio\pd
-
-# where should the external be installed?
-INSTPATH=$(PDPATH)\extra
-
-# where do the flext headers and libraries reside?
-FLEXTPATH=$(PDPATH)\flext
-
-# where is MS VC++?
-# (not necessary if the build is run with the compiler environment)
-# MSVCPATH=C:\Programme\Microsoft Visual Studio .NET 2003\Vc7
-
-# where should the external be built?
-OUTPATH=pd-msvc
-
-# user defined compiler flags
-# (check if they match your system!)
-OFLAGS=/G6 /Ox /arch:SSE
diff --git a/externals/grill/flext/build/win/pd/make-bcc.inc b/externals/grill/flext/build/win/pd/make-bcc.inc
deleted file mode 100644
index bcc062eb..00000000
--- a/externals/grill/flext/build/win/pd/make-bcc.inc
+++ /dev/null
@@ -1,35 +0,0 @@
-DEFS=$(DEFS) /DFLEXT_SYS=2
-
-INCPATH=$(INCPATH) -I$(PDPATH)\src
-
-# these are both in FLEXTPATH
-LIBS=$(LIBS) pd.lib pthreadVC.lib
-
-EXT=dll
-
-#########################################
-
-!ifdef SHARED
-# --- shared ---
-
-!else
-!ifdef THREADED
-# --- static multi-threaded ---
-
-!ifdef DEBUG
-LIBS=$(LIBS) flext_td-pdwin.lib
-!else
-LIBS=$(LIBS) flext_t-pdwin.lib
-!endif
-
-!else
-# --- static single-threaded ---
-
-!ifdef DEBUG
-LIBS=$(LIBS) flext_d-pdwin.lib
-!else
-LIBS=$(LIBS) flext-pdwin.lib
-!endif
-
-!endif
-!endif
diff --git a/externals/grill/flext/build/win/pd/make-cygwin.inc b/externals/grill/flext/build/win/pd/make-cygwin.inc
deleted file mode 100644
index e8913af7..00000000
--- a/externals/grill/flext/build/win/pd/make-cygwin.inc
+++ /dev/null
@@ -1,43 +0,0 @@
-DEFS += -DFLEXT_SYS=2
-
-INCPATH += -I$(PDPATH)/src
-LIBPATH += -L$(PDPATH)/bin
-
-LDFLAGS +=
-
-LIBS +=
-
-EXT=dll
-
-#########################################
-
-ifdef SHARED
-# --- shared ---
-
-ifdef DEBUG
-LIBS += -lflext_d
-else
-LIBS += -lflext
-endif
-
-else
-ifdef THREADED
-# --- static multi-threaded ---
-
-ifdef DEBUG
-LIBS += $(FLEXTPATH)/libflext_td.a
-else
-LIBS += $(FLEXTPATH)/libflext_t.a
-endif
-
-else
-# --- static single-threaded ---
-
-ifdef DEBUG
-LIBS += $(FLEXTPATH)/libflext_d.a
-else
-LIBS += $(FLEXTPATH)/libflext.a
-endif
-
-endif
-endif
diff --git a/externals/grill/flext/build/win/pd/make-mingw.inc b/externals/grill/flext/build/win/pd/make-mingw.inc
deleted file mode 100644
index a49e5b7a..00000000
--- a/externals/grill/flext/build/win/pd/make-mingw.inc
+++ /dev/null
@@ -1,34 +0,0 @@
-DEFS += -DFLEXT_SYS=2
-
-INCPATH += -I$(PDPATH)/src
-LIBPATH += -L$(PDPATH)/bin
-
-# these are both in PDPATH
-LIBS += -lpd -lpthreadVC
-
-EXT=dll
-
-#########################################
-
-ifdef SHARED
-# --- shared ---
-
-elseifdef THREADED
-# --- static multi-threaded ---
-
-ifdef DEBUG
-LIBS += -lflext_td-pdwin
-else
-LIBS += -lflext_t-pdwin
-endif
-
-else
-# --- static single-threaded ---
-
-ifdef DEBUG
-LIBS += -lflext_d-pdwin
-else
-LIBS += -lflext-pdwin
-endif
-
-endif
diff --git a/externals/grill/flext/build/win/pd/make-msvc.inc b/externals/grill/flext/build/win/pd/make-msvc.inc
deleted file mode 100644
index cec66266..00000000
--- a/externals/grill/flext/build/win/pd/make-msvc.inc
+++ /dev/null
@@ -1,34 +0,0 @@
-DEFS=$(DEFS) /DFLEXT_SYS=2
-
-INCPATH=$(INCPATH) /I$(PDPATH)\src
-LIBPATH=$(LIBPATH) /LIBPATH:$(PDPATH)\bin
-
-# these are both in PDPATH
-LIBS=$(LIBS) pd.lib pthreadVC.lib
-
-EXT=dll
-
-#########################################
-
-!ifdef SHARED
-# --- shared ---
-
-!elseifdef THREADED
-# --- static multi-threaded ---
-
-!ifdef DEBUG
-LIBS=$(LIBS) flext_td-pdwin.lib
-!else
-LIBS=$(LIBS) flext_t-pdwin.lib
-!endif
-
-!else
-# --- static single-threaded ---
-
-!ifdef DEBUG
-LIBS=$(LIBS) flext_d-pdwin.lib
-!else
-LIBS=$(LIBS) flext-pdwin.lib
-!endif
-
-!endif
diff --git a/externals/grill/pool/build/package.txt b/externals/grill/pool/build/package.txt
deleted file mode 100644
index 1fca6a4f..00000000
--- a/externals/grill/pool/build/package.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-NAME=pool
-
-SRCDIR=source
-
-SRCS= main.cpp data.cpp pool.cpp
-HDRS= pool.h
diff --git a/externals/grill/vasp/build/package.txt b/externals/grill/vasp/build/package.txt
deleted file mode 100644
index f8378bac..00000000
--- a/externals/grill/vasp/build/package.txt
+++ /dev/null
@@ -1,18 +0,0 @@
-NAME=vasp
-
-THREADED=1
-
-SRCDIR=source
-
-SRCS= \
-arg.cpp mixfft.cpp obj_part.cpp obj_split.cpp opparam.cpp ops_cplx.cpp ops_gen.cpp ops_trnsc.cpp util.cpp \
-buflib.cpp obj_chns.cpp obj_peaks.cpp obj_sync.cpp ops_arith.cpp ops_dft.cpp ops_qminmax.cpp ops_wnd.cpp vasp.cpp \
-classes.cpp obj_frames.cpp obj_q.cpp obj_vasp.cpp ops_assign.cpp ops_feature.cpp ops_rearr.cpp opvecs.cpp vbuffer.cpp \
-env.cpp obj_imm.cpp obj_radio.cpp obj_vecs.cpp ops_carith.cpp ops_flt.cpp ops_resmp.cpp rdx2fft.cpp vecblk.cpp \
-main.cpp obj_offs.cpp obj_size.cpp opbase.cpp ops_cmp.cpp ops_gate.cpp ops_search.cpp rvfft.cpp
-
-HDRS= \
-arg.h env.h opdefs.h oppermute.h ops_assign.h ops_cplx.h ops_flt.h ops_resmp.h ops_wnd.h vbuffer.h \
-buflib.h main.h opfuns.h oploop.h ops.h ops_carith.h ops_dft.h ops_gen.h ops_search.h util.h vecblk.h \
-classes.h opbase.h opparam.h ops_arith.h ops_cmp.h ops_feature.h ops_rearr.h ops_trnsc.h vasp.h
-
diff --git a/externals/grill/xsample/build/package.txt b/externals/grill/xsample/build/package.txt
deleted file mode 100644
index 51d63461..00000000
--- a/externals/grill/xsample/build/package.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-NAME=xsample
-
-SRCDIR=source
-
-SRCS=main.cpp play.cpp groove.cpp record.cpp inter.cpp
-HDRS=main.h inter.h