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