17 lines
300 B
Bash
17 lines
300 B
Bash
#!/bin/bash
|
|
#
|
|
# This shell script will run test program
|
|
# cmd: rt.sh
|
|
# David Essex April 2001
|
|
#
|
|
prg=`make programlist`
|
|
#
|
|
# Note: required if htcobol are shared libraries
|
|
LD_LIBRARY_PATH=.:../../lib:$LD_LIBRARY_PATH
|
|
#
|
|
TCOB_LD_LIBRARY_PATH=.
|
|
export TCOB_LD_LIBRARY_PATH LD_LIBRARY_PATH
|
|
#
|
|
./$prg
|
|
#
|