mkMakefile.tcldefs.sh.in
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. #! /bin/sh
  2. if [ ! -r @TCL_CONFIG_SH@ ]; then
  3.     echo "@TCL_CONFIG_SH@ not found"
  4.     echo "I need this file! Please make a symbolic link to this file"
  5.     echo "and start make again."
  6.     exit 1
  7. fi
  8. # Source the file to obtain the correctly expanded variable definitions
  9. . @TCL_CONFIG_SH@
  10. # Read the file a second time as an easy way of getting the list of variable
  11. # definitions to output.
  12. cat @TCL_CONFIG_SH@ |
  13.     egrep '^TCL_|^TK_' |
  14.     sed 's/^([^=]*)=.*$/1/' |
  15.     while read var
  16.     do
  17. eval echo ""$var = $$var""
  18.     done >Makefile.tcldefs
  19. exit 0