Update of /cvsroot/pure-data/externals/grill/flext/tutorial
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12682/tutorial
Modified Files:
readme.txt
Added Files:
build.bat build.sh
Removed Files:
build-pd-bcc.bat build-pd-cygwin.sh build-pd-darwin.sh
build-pd-linux.sh build-pd-msvc.bat config-pd-bcc.txt
config-pd-cygwin.txt config-pd-darwin.txt config-pd-linux.txt
config-pd-msvc.txt make-sub.pd-msvc makefile.pd-bcc
makefile.pd-cygwin makefile.pd-darwin makefile.pd-linux
makefile.pd-msvc tutorial.dsw
Log Message:
made default configurations generic
two more flext tutorials
fixes for Max headers
cleanups
updated build system
updated tutorials
revised the documentation
updated for OSX
upgraded version number
--- build-pd-cygwin.sh DELETED ---
--- config-pd-cygwin.txt DELETED ---
--- tutorial.dsw DELETED ---
--- config-pd-linux.txt DELETED ---
--- makefile.pd-bcc DELETED ---
--- makefile.pd-cygwin DELETED ---
--- config-pd-msvc.txt DELETED ---
--- makefile.pd-darwin DELETED ---
--- build-pd-linux.sh DELETED ---
--- makefile.pd-msvc DELETED ---
--- config-pd-darwin.txt DELETED ---
--- NEW FILE: build.bat ---
@echo off
if "%1"=="" goto syntax
if "%2"=="" goto syntax
if "%3"=="" goto syntax
rem first check configuration
call ..\build.bat %1 %2 %3 config "PKGINFO="
if errorlevel 1 goto end
for /D %%i in (*) do (
pushd %%i
if exist package.txt (
call ..\..\build.bat %1 %2 %3
)
popd
)
goto end
rem -----------------------------------------
:syntax
echo .
echo SYNTAX: build [platform] [system] [compiler]
echo platform ... win / lnx / mac
echo system ... pd / max
echo compiler ... msvc / gcc / mingw / cygwin / bcc / icc
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 .
:end
--- build-pd-darwin.sh DELETED ---
--- build-pd-msvc.bat DELETED ---
--- makefile.pd-linux DELETED ---
--- config-pd-bcc.txt DELETED ---
--- NEW FILE: build.sh ---
#! /bin/bash
if
[ -n "$1" -a -n "$2" -a -n "$3" ]
then
# make config first
if
bash ../build.sh $1 $2 $3 config "PKGINFO="
then
for i in * ; do
if [ -e $i/package.txt ] ; then
pushd $i
bash ../../build.sh $1 $2 $3
popd
fi
done
fi
else
echo
echo SYNTAX: build.sh [platform] [system] [compiler]
echo platform ... win / lnx / mac
echo system ..... pd / max
echo compiler ... msvc / gcc / mingw / cygwin / bcc / icc
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
fi
--- build-pd-bcc.bat DELETED ---
Index: readme.txt
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/tutorial/readme.txt,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** readme.txt 3 Mar 2003 07:57:49 -0000 1.8
--- readme.txt 5 Jan 2005 05:04:13 -0000 1.9
***************
*** 2,6 ****
tutorial examples
! Copyright (c) 2001-2003 Thomas Grill (xovo(a)gmx.net)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
--- 2,6 ----
tutorial examples
! Copyright (c) 2001-2005 Thomas Grill (gr(a)grrrr.org)
For information on usage and redistribution, and for a DISCLAIMER OF ALL
WARRANTIES, see the file, "license.txt," in this distribution.
--- make-sub.pd-msvc DELETED ---