This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update SH_PATH comment.
[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     # On QNX, 'cp' preserves timestamp, so $firstmakefile appears
60     # to be out of date.  I don't know if OS/2 has touch, so do this:
61     case "$osname" in
62     os2) ;;
63     *) $touch $firstmakefile ;;
64     esac
65 fi
66 mf=$firstmakefile
67 if test -f $mf; then
68     defrule=`<$mf sed -n                \
69         -e '/^\.c\$(OBJ_EXT):.*;/{'     \
70         -e    's/\$\*\.c//'             \
71         -e    's/^[^;]*;[        ]*//p' \
72         -e    q                         \
73         -e '}'                          \
74         -e '/^\.c\$(OBJ_EXT): *$/{'     \
75         -e    N                         \
76         -e    's/\$\*\.c//'             \
77         -e    's/^.*\n[  ]*//p'         \
78         -e    q                         \
79         -e '}'`
80 fi
81 case "$defrule" in
82 '') defrule='$(CC) -c $(CFLAGS)' ;;
83 esac
84
85 : Create files in UU directory to avoid problems with long filenames
86 : on systems with 14 character filename limits so file.c.c and file.c
87 : might be identical
88 $test -d UU || mkdir UU
89
90 $MAKE clist || ($echo "Searching for .c files..."; \
91         $echo *.c | $tr ' ' '\012' | $egrep -v '\*' >.clist)
92 for file in `$cat .clist`; do
93 # for file in `cat /dev/null`; do
94     case "$file" in
95     *.c) filebase=`basename $file .c` ;;
96     *.y) filebase=`basename $file .y` ;;
97     esac
98     case "$file" in
99     */*) finc="-I`echo $file | sed 's#/[^/]*$##`" ;;
100     *)   finc= ;;
101     esac
102     $echo "Finding dependencies for $filebase$obj_ext."
103     ( $echo "#line 1 \"$file\""; \
104       $sed -n <$file \
105         -e "/^${filebase}_init(/q" \
106         -e '/^#line/d' \
107         -e '/^#/{' \
108         -e 's|/\*.*$||' \
109         -e 's|\\$||' \
110         -e p \
111         -e '}' ) >UU/$file.c
112     $cppstdin $finc -I/usr/local/include -I. $cppflags $cppminus <UU/$file.c |
113     $sed \
114         -e '/^#.*<stdin>/d' \
115         -e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
116         -e 's/^[         ]*#[    ]*line/#/' \
117         -e '/^# *[0-9][0-9]* *[".\/]/!d' \
118         -e 's/^.*"\(.*\)".*$/'$filebase'\$(OBJ_EXT): \1/' \
119         -e 's/^# *[0-9][0-9]* \(.*\)$/'$filebase'\$(OBJ_EXT): \1/' \
120         -e 's|: \./|: |' \
121         -e 's|\.c\.c|.c|' | \
122     $uniq | $sort | $uniq >> .deptmp
123 done
124
125 $sed <$mf >$mf.new -e '1,/^# AUTOMATICALLY/!d'
126
127 $MAKE shlist || ($echo "Searching for .SH files..."; \
128         $echo *.SH | $tr ' ' '\012' | $egrep -v '\*' >.shlist)
129
130 # Now extract the dependencies on makedepend.SH and Makefile.SH
131 # (they should reside in the main Makefile):
132 mv .shlist .shlist.old
133 $egrep -v '^makedepend\.SH' <.shlist.old >.shlist
134 mv .shlist .shlist.old
135 $egrep -v '^Makefile\.SH' <.shlist.old >.shlist
136 rm .shlist.old
137
138 if $test -s .deptmp; then
139     for file in `cat .shlist`; do
140         $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
141             $sh $file >> .deptmp
142     done
143     $echo "Updating $mf..."
144     $echo "# If this runs make out of memory, delete /usr/include lines." \
145         >> $mf.new
146     $sed 's|^\(.*\$(OBJ_EXT):\) *\(.*/.*\.c\) *$|\1 \2; '"$defrule \2|" .deptmp \
147        >>$mf.new
148 else
149     $MAKE hlist || ($echo "Searching for .h files..."; \
150         $echo *.h | $tr ' ' '\012' | $egrep -v '\*' >.hlist)
151     $echo "You don't seem to have a proper C preprocessor.  Using grep instead."
152     $egrep '^#include ' `cat .clist` `cat .hlist`  >.deptmp
153     $echo "Updating $mf..."
154     <.clist $sed -n                                                     \
155         -e '/\//{'                                                      \
156         -e   's|^\(.*\)/\(.*\)\.c|\2\$(OBJ_EXT): \1/\2.c; '"$defrule \1/\2.c|p" \
157         -e   d                                                          \
158         -e '}'                                                          \
159         -e 's|^\(.*\)\.c|\1\$(OBJ_EXT): \1.c|p' >> $mf.new
160     <.hlist $sed -n 's|\(.*/\)\(.*\)|s= \2= \1\2=|p' >.hsed
161     <.deptmp $sed -n 's|c:#include "\(.*\)".*$|o: \1|p' | \
162        $sed 's|^[^;]*/||' | \
163        $sed -f .hsed >> $mf.new
164     <.deptmp $sed -n 's|h:#include "\(.*\)".*$|h: \1|p' | \
165        $sed -f .hsed >> $mf.new
166     for file in `$cat .shlist`; do
167         $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
168             $sh $file >> $mf.new
169     done
170 fi
171 $rm -f $mf.old
172 $cp $mf $mf.old
173 $rm -f $mf
174 $cp $mf.new $mf
175 $rm $mf.new
176 $echo "# WARNING: Put nothing here or make depend will gobble it up!" >> $mf
177 $rm -rf .deptmp UU .shlist .clist .hlist .hsed
178
179 !NO!SUBS!
180 $eunicefix makedepend
181 chmod +x makedepend
182 case `pwd` in
183 *SH)
184     $rm -f ../makedepend
185     ln makedepend ../makedepend
186     ;;
187 esac