chk.srcfiles
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #!/bin/sh -
  2. #
  3. # $Id: chk.srcfiles,v 1.3 2000/12/12 18:20:59 bostic Exp $
  4. #
  5. # Check to make sure we haven't forgotten to add any files to the list
  6. # of source files Win32 uses to build its dsp files.
  7. # Run from the top-level directory.
  8. [ -f db_config.h ] && cd ..
  9. f=dist/srcfiles.in
  10. t1=/tmp/__1
  11. t2=/tmp/__2
  12. sed -e '/^[  #]/d' 
  13.     -e '/^$/d' < $f |
  14.     awk '{print $1}' > ${t1}
  15. find . -type f |
  16.     sed -e 's/^.///' |
  17.     egrep '.c$|.cpp$|.def$|.rc$' |
  18.     sed -e '/dist/build/chk.def/d' 
  19.         -e '/perl.DB_File/version.c/d' |
  20.     sort > ${t2}
  21. cmp ${t1} ${t2} > /dev/null ||
  22. (echo "<<< srcfiles.in >>> existing files" && 
  23.     diff ${t1} ${t2} | tee /tmp/_f)
  24. rm -f ${t1} ${t2}