head 1.3; access; symbols AS_AFTER_RESTRUCTURING:1.2 OSSP_REL:1.1.1.1 OSSP_VEN:1.1.1; locks; strict; comment @# @; 1.3 date 2003.07.07.12.23.46; author ms; state Exp; branches; next 1.2; 1.2 date 2002.11.28.20.44.36; author ms; state Exp; branches; next 1.1; 1.1 date 2002.10.21.15.19.37; author ms; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2002.10.21.15.19.37; author ms; state Exp; branches; next ; desc @@ 1.3 log @Light changes and corrections to build configuration. @ text @#! /bin/sh ## ## devtool -- Development Tool ## Copyright (c) 2001-2002 Ralf S. Engelschall ## if [ $# -eq 0 ]; then echo "devtool:USAGE: devtool [ ...]" 1>&2 exit 1 fi cmd="$1" shift devtoolfunc="./devtool.func" if [ ! -f devtool.conf ]; then echo "devtool:ERROR: no devtool.conf in current directory" 1>&2 exit 1 fi cmdline=`grep "^%$cmd" devtool.conf` if [ ".$cmdline" = . ]; then echo "devtool:ERROR: command $cmd not found in devtool.conf" 1>&2 exit 1 fi if [ ".$TMPDIR" != . ]; then tmpdir="$TMPDIR" elif [ ".$TEMPDIR" != . ]; then tmpdir="$TEMPDIR" else tmpdir="/tmp" fi tmpfile="$tmpdir/as-gui.$$.tmp" rm -f $tmpfile touch $tmpfile echo ". $devtoolfunc" >>$tmpfile ( sed >$tmpfile sh $tmpfile "$@@" rm -f $tmpfile >/dev/null 2>&1 || true @ 1.2 log @Massive build configuration preparation, added boilerplate header text, and cleaned up whitespace. @ text @d35 1 a35 1 tmpfile="$tmpdir/titraq.$$.tmp" @ 1.1 log @Initial revision @ text @d4 1 a4 1 ## Copyright (c) 2001-2002 Ralf S. Engelschall @ 1.1.1.1 log @Birth of OSSP titraq GUI for Cable & Wireless Muenchen accounting system. @ text @@