aboutsummaryrefslogtreecommitdiff
path: root/externals/grill/flext/build.bat
diff options
context:
space:
mode:
authorThomas Grill <xovo@users.sourceforge.net>2005-02-27 04:56:10 +0000
committerThomas Grill <xovo@users.sourceforge.net>2005-02-27 04:56:10 +0000
commit3e90874e5d63137c195c3b3c1ce90b542deb8a51 (patch)
tree95f9b19ec8a3f579f976c3d80e4eae639867ea97 /externals/grill/flext/build.bat
parent7d9437c8a5fed2d03c22454f643b4bf5598f2d9e (diff)
small name change and reuse of Fifo cells
fixed eol-style new lock-free lifo and fifo fixes for linux eliminated ChannelsIn/ChannelsOut updated docs build system: added profiler mode, more fixes fix for linux autodetection of build platform fix for flext_dsp @ Max svn path=/trunk/; revision=2584
Diffstat (limited to 'externals/grill/flext/build.bat')
-rw-r--r--externals/grill/flext/build.bat22
1 files changed, 11 insertions, 11 deletions
diff --git a/externals/grill/flext/build.bat b/externals/grill/flext/build.bat
index d2fd2fc0..4f97f0cd 100644
--- a/externals/grill/flext/build.bat
+++ b/externals/grill/flext/build.bat
@@ -18,15 +18,14 @@ rem ------------------------------------------------------------------------
set flext=%~dp0
rem Arguments:
-rem %1 - platform (win/lnx/mac)
-rem %2 - system (pd/max)
-rem %3 - compiler (msvc/gcc/mingw/cygwin/bcc/icc)
-rem %4 - target (build/clean/install)
+rem %1 - system (pd/max)
+rem %2 - compiler (msvc/gcc/mingw/cygwin/bcc/icc)
+rem %3 - target (build/clean/install)
-set platform=%1
-set rtsys=%2
-set compiler=%3
-set target=%4
+set platform=win
+set rtsys=%1
+set compiler=%2
+set target=%3
rem --- The subbatch knowns which make utility to use ---
set subbatch=%flext%buildsys\build-%compiler%.bat
@@ -37,7 +36,7 @@ if "%compiler%"=="" goto syntax
if not exist %subbatch% goto syntax
-call %subpatch% %subbatch% %platform% %rtsys% %target% %5 %6 %7 %8 %9
+call %subpatch% %subbatch% %platform% %rtsys% %target% %4 %5 %6 %7 %8 %9
goto end
@@ -45,8 +44,7 @@ rem -----------------------------------------
:syntax
echo .
-echo SYNTAX: build [platform] [system] [compiler] {target}
-echo platform ... win / lnx / mac
+echo SYNTAX: build [system] [compiler] {target}
echo system ... pd / max
echo compiler ... msvc / gcc / mingw / cygwin / bcc / icc
echo target ... all (default) / clean / install
@@ -54,5 +52,7 @@ echo .
echo Please make sure that your make program and compiler can be accessed with the
echo system path and that all relevant environment variables are properly set.
echo .
+echo For further information read flext/build.txt
+echo .
:end