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