home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.2J (Developer) / os42jdev.iso / NextDeveloper / Source / GNU / perl / Perl / makedepend < prev    next >
Text File  |  1995-12-06  |  4KB  |  138 lines

  1. #!/bin/sh
  2. # makedepend.SH
  3. #
  4. ## To use an alternate make, set $altmake in config.sh.
  5. MAKE=gnumake
  6.  
  7. export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh \$0; kill \$\$)
  8.  
  9. case $CONFIG in
  10. '')
  11.     if test -f config.sh; then TOP=.;
  12.     elif test -f ../config.sh; then TOP=..;
  13.     elif test -f ../../config.sh; then TOP=../..;
  14.     elif test -f ../../../config.sh; then TOP=../../..;
  15.     elif test -f ../../../../config.sh; then TOP=../../../..;
  16.     else
  17.         echo "Can't find config.sh."; exit 1
  18.     fi
  19.     . $TOP/config.sh
  20.     ;;
  21. esac
  22.  
  23. # We need .. when we are in the x2p directory if we are using the
  24. # cppstdin wrapper script.
  25. PATH="$PATH:.:.."
  26. export PATH
  27.  
  28. $cat /dev/null >.deptmp
  29. $rm -f *.c.c c/*.c.c
  30. if test -f Makefile; then
  31.     rm -f makefile
  32.     cp Makefile makefile
  33. fi
  34. mf=makefile
  35. if test -f $mf; then
  36.     defrule=`<$mf sed -n        \
  37.     -e '/^\.c\.o:.*;/{'        \
  38.     -e    's/\$\*\.c//'        \
  39.     -e    's/^[^;]*;[     ]*//p'    \
  40.     -e    q                \
  41.     -e '}'                \
  42.     -e '/^\.c\.o: *$/{'        \
  43.     -e    N                \
  44.     -e    's/\$\*\.c//'        \
  45.     -e    's/^.*\n[     ]*//p'        \
  46.     -e    q                \
  47.     -e '}'`
  48. fi
  49. case "$defrule" in
  50. '') defrule='$(CC) -c $(CFLAGS)' ;;
  51. esac
  52.  
  53. : Create files in UU directory to avoid problems with long filenames
  54. : on systems with 14 character filename limits so file.c.c and file.c
  55. : might be identical
  56. $test -d UU || mkdir UU
  57.  
  58. $MAKE clist || ($echo "Searching for .c files..."; \
  59.     $echo *.c | $tr ' ' '\012' | $egrep -v '\*' >.clist)
  60. for file in `$cat .clist`; do
  61. # for file in `cat /dev/null`; do
  62.     case "$file" in
  63.     *.c) filebase=`basename $file .c` ;;
  64.     *.y) filebase=`basename $file .y` ;;
  65.     esac
  66.     case "$file" in
  67.     */*) finc="-I`echo $file | sed 's#/[^/]*$##`" ;;
  68.     *)   finc= ;;
  69.     esac
  70.     $echo "Finding dependencies for $filebase.o."
  71.     ( $echo "#line 1 \"$file\""; \
  72.       $sed -n <$file \
  73.     -e "/^${filebase}_init(/q" \
  74.     -e '/^#line/d' \
  75.     -e '/^#/{' \
  76.     -e 's|/\*.*$||' \
  77.     -e 's|\\$||' \
  78.     -e p \
  79.     -e '}' ) >UU/$file.c
  80.     $cppstdin $finc -I/usr/local/include -I. $cppflags $cppminus <UU/$file.c |
  81.     $sed \
  82.     -e '/^#.*<stdin>/d' \
  83.     -e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
  84.     -e 's/^[     ]*#[     ]*line/#/' \
  85.     -e '/^# *[0-9][0-9]* *[".\/]/!d' \
  86.     -e 's/^.*"\(.*\)".*$/'$filebase'.o: \1/' \
  87.     -e 's/^# *[0-9][0-9]* \(.*\)$/'$filebase'.o: \1/' \
  88.     -e 's|: \./|: |' \
  89.     -e 's|\.c\.c|.c|' | \
  90.     $uniq | $sort | $uniq >> .deptmp
  91. done
  92.  
  93. $sed <$mf >$mf.new -e '1,/^# AUTOMATICALLY/!d'
  94.  
  95. $MAKE shlist || ($echo "Searching for .SH files..."; \
  96.     $echo *.SH | $tr ' ' '\012' | $egrep -v '\*' >.shlist)
  97. if $test -s .deptmp; then
  98.     for file in `cat .shlist`; do
  99.     $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
  100.         /bin/sh $file >> .deptmp
  101.     done
  102.     $echo "Updating $mf..."
  103.     $echo "# If this runs make out of memory, delete /usr/include lines." \
  104.     >> $mf.new
  105.     $sed 's|^\(.*\.o:\) *\(.*/.*\.c\) *$|\1 \2; '"$defrule \2|" .deptmp \
  106.        >>$mf.new
  107. else
  108.     $MAKE hlist || ($echo "Searching for .h files..."; \
  109.     $echo *.h | $tr ' ' '\012' | $egrep -v '\*' >.hlist)
  110.     $echo "You don't seem to have a proper C preprocessor.  Using grep instead."
  111.     $egrep '^#include ' `cat .clist` `cat .hlist`  >.deptmp
  112.     $echo "Updating $mf..."
  113.     <.clist $sed -n                            \
  114.     -e '/\//{'                            \
  115.     -e   's|^\(.*\)/\(.*\)\.c|\2.o: \1/\2.c; '"$defrule \1/\2.c|p"    \
  116.     -e   d                                \
  117.     -e '}'                                \
  118.     -e 's|^\(.*\)\.c|\1.o: \1.c|p' >> $mf.new
  119.     <.hlist $sed -n 's|\(.*/\)\(.*\)|s= \2= \1\2=|p' >.hsed
  120.     <.deptmp $sed -n 's|c:#include "\(.*\)".*$|o: \1|p' | \
  121.        $sed 's|^[^;]*/||' | \
  122.        $sed -f .hsed >> $mf.new
  123.     <.deptmp $sed -n 's|h:#include "\(.*\)".*$|h: \1|p' | \
  124.        $sed -f .hsed >> $mf.new
  125.     for file in `$cat .shlist`; do
  126.     $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
  127.         /bin/sh $file >> $mf.new
  128.     done
  129. fi
  130. $rm -f $mf.old
  131. $cp $mf $mf.old
  132. $rm -f $mf
  133. $cp $mf.new $mf
  134. $rm $mf.new
  135. $echo "# WARNING: Put nothing here or make depend will gobble it up!" >> $mf
  136. $rm -rf .deptmp UU .shlist .clist .hlist .hsed
  137.  
  138.