From 1a8a5f119d8dc4e8b8f54867f419a2244468d4ef Mon Sep 17 00:00:00 2001 From: Thomas Grill Date: Sun, 19 Dec 2004 05:10:46 +0000 Subject: updated make system svn path=/trunk/; revision=2414 --- externals/grill/vst/build-mac-pd-gcc.sh | 1 - externals/grill/vst/build-win-pd-msvc.bat | 3 --- externals/grill/vst/build/config-mac.def | 6 ++++++ externals/grill/vst/build/config-win.def | 3 +++ externals/grill/vst/build/makefile-mac-gcc.inc | 3 +++ externals/grill/vst/build/makefile-win-msvc.inc | 2 ++ externals/grill/vst/build/package.txt | 11 +++++++++++ externals/grill/vst/config-mac-gcc.txt | 11 ----------- externals/grill/vst/config-win-msvc.txt | 11 ----------- externals/grill/vst/make-files.txt | 7 ------- externals/grill/vst/makefile-mac-gcc.txt | 9 --------- externals/grill/vst/makefile-win-msvc.txt | 11 ----------- 12 files changed, 25 insertions(+), 53 deletions(-) delete mode 100644 externals/grill/vst/build-mac-pd-gcc.sh delete mode 100644 externals/grill/vst/build-win-pd-msvc.bat create mode 100644 externals/grill/vst/build/config-mac.def create mode 100644 externals/grill/vst/build/config-win.def create mode 100644 externals/grill/vst/build/makefile-mac-gcc.inc create mode 100644 externals/grill/vst/build/makefile-win-msvc.inc create mode 100644 externals/grill/vst/build/package.txt delete mode 100644 externals/grill/vst/config-mac-gcc.txt delete mode 100644 externals/grill/vst/config-win-msvc.txt delete mode 100644 externals/grill/vst/make-files.txt delete mode 100644 externals/grill/vst/makefile-mac-gcc.txt delete mode 100644 externals/grill/vst/makefile-win-msvc.txt (limited to 'externals/grill/vst') diff --git a/externals/grill/vst/build-mac-pd-gcc.sh b/externals/grill/vst/build-mac-pd-gcc.sh deleted file mode 100644 index a88a3dbb..00000000 --- a/externals/grill/vst/build-mac-pd-gcc.sh +++ /dev/null @@ -1 +0,0 @@ -make -f ../flext/build/gnumake.mak PLATFORM=mac RTSYS=pd COMPILER=gcc $* diff --git a/externals/grill/vst/build-win-pd-msvc.bat b/externals/grill/vst/build-win-pd-msvc.bat deleted file mode 100644 index 6c6b86c3..00000000 --- a/externals/grill/vst/build-win-pd-msvc.bat +++ /dev/null @@ -1,3 +0,0 @@ -@rem building with flext build system - -nmake -f ..\flext\build\nmake.mak PLATFORM=win RTSYS=pd COMPILER=msvc %1 %2 %3 %4 %5 %6 %7 %8 %9 diff --git a/externals/grill/vst/build/config-mac.def b/externals/grill/vst/build/config-mac.def new file mode 100644 index 00000000..d08c7122 --- /dev/null +++ b/externals/grill/vst/build/config-mac.def @@ -0,0 +1,6 @@ + + + +# where is the VST SDK? +# (at least version 2.3) +VSTSDKPATH=/Volumes/Daten/Prog/packs/vstsdk2.3 diff --git a/externals/grill/vst/build/config-win.def b/externals/grill/vst/build/config-win.def new file mode 100644 index 00000000..a00f9dac --- /dev/null +++ b/externals/grill/vst/build/config-win.def @@ -0,0 +1,3 @@ +# where is the VST SDK? +# (at least version 2.3) +VSTSDKPATH=c:\data\prog\audio\vstsdk2.3 diff --git a/externals/grill/vst/build/makefile-mac-gcc.inc b/externals/grill/vst/build/makefile-mac-gcc.inc new file mode 100644 index 00000000..6ecd3681 --- /dev/null +++ b/externals/grill/vst/build/makefile-mac-gcc.inc @@ -0,0 +1,3 @@ +INCPATH=-I$(VSTSDKPATH)/source/common + + diff --git a/externals/grill/vst/build/makefile-win-msvc.inc b/externals/grill/vst/build/makefile-win-msvc.inc new file mode 100644 index 00000000..1c8281d5 --- /dev/null +++ b/externals/grill/vst/build/makefile-win-msvc.inc @@ -0,0 +1,2 @@ +INCPATH=/I$(VSTSDKPATH)\source\common +LIBS=user32.lib diff --git a/externals/grill/vst/build/package.txt b/externals/grill/vst/build/package.txt new file mode 100644 index 00000000..bd1da0e9 --- /dev/null +++ b/externals/grill/vst/build/package.txt @@ -0,0 +1,11 @@ +NAME=vst~ + +THREADED=1 +HAVECONFIG=1 +HAVEMAKE=1 + +SRCDIR=src + +SRCS=main.cpp vsthost.cpp editor.cpp + +HDRS=main.h vsthost.h editor.h editorwin.hpp editormac.hpp diff --git a/externals/grill/vst/config-mac-gcc.txt b/externals/grill/vst/config-mac-gcc.txt deleted file mode 100644 index 7ee8d2e9..00000000 --- a/externals/grill/vst/config-mac-gcc.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Your settings are defined in the files -# ../flext/build/config-mac-pd-gcc.txt -# and -# ../flext/build/config-mac-max-gcc.txt -# -# You can override them here. - - -# where is the VST SDK? -# (at least version 2.3) -VSTSDKPATH=/Volumes/Daten/Prog/packs/vstsdk2.3 diff --git a/externals/grill/vst/config-win-msvc.txt b/externals/grill/vst/config-win-msvc.txt deleted file mode 100644 index 5afa0c3e..00000000 --- a/externals/grill/vst/config-win-msvc.txt +++ /dev/null @@ -1,11 +0,0 @@ -# Your settings are defined in the files -# ../flext/build/config-mac-pd-gcc.txt -# and -# ../flext/build/config-mac-max-gcc.txt -# -# You can override them here. - - -# where is the VST SDK? -# (at least version 2.3) -VSTSDKPATH=c:\data\prog\audio\vstsdk2.3 diff --git a/externals/grill/vst/make-files.txt b/externals/grill/vst/make-files.txt deleted file mode 100644 index d4192dbb..00000000 --- a/externals/grill/vst/make-files.txt +++ /dev/null @@ -1,7 +0,0 @@ -NAME=vst~ - -SRCDIR=src - -SRCS=main.cpp vsthost.cpp editor.cpp - -HDRS=main.h vsthost.h editor.h editorwin.hpp editormac.hpp diff --git a/externals/grill/vst/makefile-mac-gcc.txt b/externals/grill/vst/makefile-mac-gcc.txt deleted file mode 100644 index 3a907e1e..00000000 --- a/externals/grill/vst/makefile-mac-gcc.txt +++ /dev/null @@ -1,9 +0,0 @@ -# usage: -# to build run "sh build-mac-max-gcc.sh" or "sh build-mac-pd-gcc.sh" -# - -# includes -INCPATH=-I$(VSTSDKPATH)/source/common - -# multithreaded build -THREADED=1 diff --git a/externals/grill/vst/makefile-win-msvc.txt b/externals/grill/vst/makefile-win-msvc.txt deleted file mode 100644 index d9d3a2cc..00000000 --- a/externals/grill/vst/makefile-win-msvc.txt +++ /dev/null @@ -1,11 +0,0 @@ -# usage: -# to build run "build-max-msvc.bat" or "build-pd-msvc.bat" -# - -# includes -INCPATH=/I$(VSTSDKPATH)\source\common -# system libraries -LIBS=$(LIBS) user32.lib - -# multithreaded build -THREADED=1 -- cgit v1.2.1