#!/bin/sh
#
# file: lk_appbuilder.sh
#

# To increase portability, this is the driver program for the linkon
# GUI.
#

# This is the standard place for the tcl code to reside
#
LK_HOME="$LINKON/util/lk_appbuilder/v1.0"

# wish needs only to be in your path for this to run, instead of having
# a location hardcoded
#
for FILE in $*
 do
    wish -f $LK_HOME/lk_main.tcl $FILE &
 done

# end of file
#
