This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[differences between cumulative patch application and perl5.003_17]
[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 mv .shlist .shlist.old
137 $egrep -v '^perl_exp\.SH' <.shlist.old >.shlist
138 mv .shlist .shlist.old
139 $egrep -v '^config_h\.SH' <.shlist.old >.shlist
140 rm .shlist.old
141
142 if $test -s .deptmp; then
143     for file in `cat .shlist`; do
144         $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
145             $sh $file >> .deptmp
146     done
147     $echo "Updating $mf..."
148     $echo "# If this runs make out of memory, delete /usr/include lines." \
149         >> $mf.new
150     $sed 's|^\(.*\$(OBJ_EXT):\) *\(.*/.*\.c\) *$|\1 \2; '"$defrule \2|" .deptmp \
151        >>$mf.new
152 else
153     $MAKE hlist || ($echo "Searching for .h files..."; \
154         $echo *.h | $tr ' ' '\012' | $egrep -v '\*' >.hlist)
155     $echo "You don't seem to have a proper C preprocessor.  Using grep instead."
156     $egrep '^#include ' `cat .clist` `cat .hlist`  >.deptmp
157     $echo "Updating $mf..."
158     <.clist $sed -n                                                     \
159         -e '/\//{'                                                      \
160         -e   's|^\(.*\)/\(.*\)\.c|\2\$(OBJ_EXT): \1/\2.c; '"$defrule \1/\2.c|p" \
161         -e   d                                                          \
162         -e '}'                                                          \
163         -e 's|^\(.*\)\.c|\1\$(OBJ_EXT): \1.c|p' >> $mf.new
164     <.hlist $sed -n 's|\(.*/\)\(.*\)|s= \2= \1\2=|p' >.hsed
165     <.deptmp $sed -n 's|c:#include "\(.*\)".*$|o: \1|p' | \
166        $sed 's|^[^;]*/||' | \
167        $sed -f .hsed >> $mf.new
168     <.deptmp $sed -n 's|h:#include "\(.*\)".*$|h: \1|p' | \
169        $sed -f .hsed >> $mf.new
170     for file in `$cat .shlist`; do
171         $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
172             $sh $file >> $mf.new
173     done
174 fi
175 $rm -f $mf.old
176 $cp $mf $mf.old
177 $rm -f $mf
178 $cp $mf.new $mf
179 $rm $mf.new
180 $echo "# WARNING: Put nothing here or make depend will gobble it up!" >> $mf
181 $rm -rf .deptmp UU .shlist .clist .hlist .hsed
182
183 !NO!SUBS!
184 $eunicefix makedepend
185 chmod +x makedepend
186 case `pwd` in
187 *SH)
188     $rm -f ../makedepend
189     ln makedepend ../makedepend
190     ;;
191 esac