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

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