Artifact cd36f68c23ab5b4fcb3f832b85f976abcbc0e05125aa93c0e9c1fb7e1f1f3082:
- Executable file
mttroot/mtt/lib/rep/sfun_rep.sh
— part of check-in
[c120c65076]
at
2002-05-10 13:24:58
on branch origin/master
— Added initial support for building Simulink S-functions.
Rates do not update properly yet.
Inertial switches do not work yet.
Implicit integration not supported yet.build with: mtt -i euler MotorGenerator sfun mexglx. (user: geraint@users.sourceforge.net, size: 411) [annotate] [blame] [check-ins using] [more...]
#! /bin/sh set -e debug=0 if [ $debug -eq 1 ]; then set -x make_debug='--debug=a' else set +x make_debug='' fi check_for_errors () { errno=0 # check stuff case $errno in 0) ;; # ok *) echo "E $errno"; exit $errno; ;; esac } check_for_errors $* OPTS="$1" SYS="$2" REP="$3" LANG="$4" make $make_debug -f ${MTT_REP}/sfun_rep/Makefile ${2}_${3}.${4} exit 0