mkdep-sco.sh
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:2k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. #!/bin/sh
  2. #ident "%W% %E% %Q%"
  3. ###########################################################################
  4. # Copyright 1999 by J. Schilling
  5. ###########################################################################
  6. #
  7. # Create dependency list with SCO's cc
  8. #
  9. ###########################################################################
  10. #
  11. # This script will probably not work correctly with a list of C-files
  12. # but as we don't need it with 'smake' or 'gmake' it seems to be sufficient.
  13. #
  14. ###########################################################################
  15. # This program is free software; you can redistribute it and/or modify
  16. # it under the terms of the GNU General Public License as published by
  17. # the Free Software Foundation; either version 2, or (at your option)
  18. # any later version.
  19. #
  20. # This program is distributed in the hope that it will be useful,
  21. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  22. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  23. # GNU General Public License for more details.
  24. #
  25. # You should have received a copy of the GNU General Public License
  26. # along with this program; see the file COPYING.  If not, write to
  27. # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
  28. ###########################################################################
  29. FILES=
  30. for i in "$@"; do
  31. case "$i" in
  32. -*) # ignore options
  33. ;;
  34. *.c) if [ ! -z "$FILES" ]; then
  35. FILES="$FILES "
  36. fi
  37. FILES="$FILES$i"
  38. ;;
  39. esac
  40. done
  41. OFILES=`echo "$FILES" | sed 's;(.*).c;1.o;'`
  42. cc -H -E 2>&1 > /dev/null "$@" | grep -hv '^"' | sed -e "s;^;$OFILES: ;"