aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/build/win/pd
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2004-12-20 05:10:57 +0000
committerThomas Grill <xovo@users.sourceforge.net>2004-12-20 05:10:57 +0000
commit3ab0a9838446d7a0b06f4e92e8a962c3feaac83b (patch)
tree88184aa3a90faba7e3e03ea9b71887a29a80c933 /externals/grill/flext/build/win/pd
parent9c72c6c01317e0adb3eb671b50f024ad0e19c5b0 (diff)
remove deleted files
svn path=/trunk/; revision=2420
Diffstat (limited to 'externals/grill/flext/build/win/pd')
-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
8 files changed, 0 insertions, 217 deletions
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