This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
general updates to README.vms
[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 trnl='$trnl'
29 !GROK!THIS!
30 $spitshell >>makedepend <<'!NO!SUBS!'
31
32 # This script should be called with 
33 #     sh ./makedepend MAKE=$(MAKE)
34 case "$1" in 
35         MAKE=*) eval $1 ;;
36 esac
37
38 export PATH || (echo "OOPS, this isn't sh.  Desperation time.  I will feed myself to sh."; sh \$0; kill \$\$)
39
40 case $CONFIG in
41 '')
42         if test -f config.sh; then TOP=.;
43         elif test -f ../config.sh; then TOP=..;
44         elif test -f ../../config.sh; then TOP=../..;
45         elif test -f ../../../config.sh; then TOP=../../..;
46         elif test -f ../../../../config.sh; then TOP=../../../..;
47         else
48                 echo "Can't find config.sh."; exit 1
49         fi
50         . $TOP/config.sh
51         ;;
52 esac
53
54 # We need .. when we are in the x2p directory if we are using the
55 # cppstdin wrapper script.
56 # Put .. and . first so that we pick up the present cppstdin, not
57 # an older one lying about in /usr/local/bin.
58 PATH=".$path_sep..$path_sep$PATH"
59 export PATH
60
61 $cat /dev/null >.deptmp
62 $rm -f *.c.c c/*.c.c
63 if test -f Makefile; then
64     rm -f $firstmakefile
65     cp Makefile $firstmakefile
66     # On QNX, 'cp' preserves timestamp, so $firstmakefile appears
67     # to be out of date.  I don't know if OS/2 has touch, so do this:
68     case "$osname" in
69     os2) ;;
70     *) $touch $firstmakefile ;;
71     esac
72 fi
73 mf=$firstmakefile
74 if test -f $mf; then
75     defrule=`<$mf sed -n                \
76         -e '/^\.c\$(OBJ_EXT):.*;/{'     \
77         -e    's/\$\*\.c//'             \
78         -e    's/^[^;]*;[        ]*//p' \
79         -e    q                         \
80         -e '}'                          \
81         -e '/^\.c\$(OBJ_EXT): *$/{'     \
82         -e    N                         \
83         -e    's/\$\*\.c//'             \
84         -e    's/^.*\n[  ]*//p'         \
85         -e    q                         \
86         -e '}'`
87 fi
88 case "$defrule" in
89 '') defrule='$(CC) -c $(CFLAGS)' ;;
90 esac
91
92 : Create files in UU directory to avoid problems with long filenames
93 : on systems with 14 character filename limits so file.c.c and file.c
94 : might be identical
95 $test -d UU || mkdir UU
96
97 $MAKE clist || ($echo "Searching for .c files..."; \
98         $echo *.c | $tr ' ' $trnl | $egrep -v '\*' >.clist)
99 for file in `$cat .clist`; do
100 # for file in `cat /dev/null`; do
101         if [ "$osname" = uwin ]; then
102                 uwinfix="-e s,\\\\\\\\,/,g -e s,\\([a-zA-Z]\\):/,/\\1/,g"
103         else
104                 uwinfix=
105         fi
106     case "$file" in
107     *.c) filebase=`basename $file .c` ;;
108     *.y) filebase=`basename $file .y` ;;
109     esac
110     case "$file" in
111     */*) finc="-I`echo $file | sed 's#/[^/]*$##`" ;;
112     *)   finc= ;;
113     esac
114     $echo "Finding dependencies for $filebase$_o."
115     ( $echo "#line 1 \"$file\""; \
116       $sed -n <$file \
117         -e "/^${filebase}_init(/q" \
118         -e '/^#line/d' \
119         -e '/^#/{' \
120         -e 's|/\*.*$||' \
121         -e 's|\\$||' \
122         -e p \
123         -e '}' ) >UU/$file.c
124     $cppstdin $finc -I. $cppflags $cppminus <UU/$file.c |
125     $sed \
126         -e '/^#.*<stdin>/d' \
127         -e '/^#.*"-"/d' \
128         -e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
129         -e 's/^[         ]*#[    ]*line/#/' \
130         -e '/^# *[0-9][0-9]* *[".\/]/!d' \
131         -e 's/^.*"\(.*\)".*$/'$filebase'\$(OBJ_EXT): \1/' \
132         -e 's/^# *[0-9][0-9]* \(.*\)$/'$filebase'\$(OBJ_EXT): \1/' \
133         -e 's|: \./|: |' \
134         -e 's|\.c\.c|.c|' $uwinfix | \
135     $uniq | $sort | $uniq >> .deptmp
136 done
137
138 $sed <$mf >$mf.new -e '1,/^# AUTOMATICALLY/!d'
139
140 $MAKE shlist || ($echo "Searching for .SH files..."; \
141         $echo *.SH | $tr ' ' $trnl | $egrep -v '\*' >.shlist)
142
143 # Now extract the dependencies on makedepend.SH and Makefile.SH
144 # (they should reside in the main Makefile):
145 rm -f .shlist.old
146 mv .shlist .shlist.old
147 $egrep -v '^makedepend\.SH' <.shlist.old >.shlist
148 rm -f .shlist.old
149 mv .shlist .shlist.old
150 $egrep -v '^Makefile\.SH' <.shlist.old >.shlist
151 rm -f .shlist.old
152 mv .shlist .shlist.old
153 $egrep -v '^perl_exp\.SH' <.shlist.old >.shlist
154 rm -f .shlist.old
155 mv .shlist .shlist.old
156 $egrep -v '^config_h\.SH' <.shlist.old >.shlist
157 rm .shlist.old
158
159 if $test -s .deptmp; then
160     for file in `cat .shlist`; do
161         $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
162             $sh $file >> .deptmp
163     done
164     $echo "Updating $mf..."
165     $echo "# If this runs make out of memory, delete /usr/include lines." \
166         >> $mf.new
167     $sed 's|^\(.*\$(OBJ_EXT):\) *\(.*/.*\.c\) *$|\1 \2; '"$defrule \2|" .deptmp \
168        >>$mf.new
169 else
170     $MAKE hlist || ($echo "Searching for .h files..."; \
171         $echo *.h | $tr ' ' $trnl | $egrep -v '\*' >.hlist)
172     $echo "You don't seem to have a proper C preprocessor.  Using grep instead."
173     $egrep '^#include ' `cat .clist` `cat .hlist`  >.deptmp
174     $echo "Updating $mf..."
175     <.clist $sed -n                                                     \
176         -e '/\//{'                                                      \
177         -e   's|^\(.*\)/\(.*\)\.c|\2\$(OBJ_EXT): \1/\2.c; '"$defrule \1/\2.c|p" \
178         -e   d                                                          \
179         -e '}'                                                          \
180         -e 's|^\(.*\)\.c|\1\$(OBJ_EXT): \1.c|p' >> $mf.new
181     <.hlist $sed -n 's|\(.*/\)\(.*\)|s= \2= \1\2=|p' >.hsed
182     <.deptmp $sed -n 's|c:#include "\(.*\)".*$|o: \1|p' | \
183        $sed 's|^[^;]*/||' | \
184        $sed -f .hsed >> $mf.new
185     <.deptmp $sed -n 's|h:#include "\(.*\)".*$|h: \1|p' | \
186        $sed -f .hsed >> $mf.new
187     for file in `$cat .shlist`; do
188         $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
189             $sh $file >> $mf.new
190     done
191 fi
192 $rm -f $mf.old
193 $cp $mf $mf.old
194 $rm -f $mf
195 $cp $mf.new $mf
196 $rm $mf.new
197 $echo "# WARNING: Put nothing here or make depend will gobble it up!" >> $mf
198 $rm -rf .deptmp UU .shlist .clist .hlist .hsed
199
200 !NO!SUBS!
201 $eunicefix makedepend
202 chmod +x makedepend
203 case `pwd` in
204 *SH)
205     $rm -f ../makedepend
206     ln makedepend ../makedepend
207     ;;
208 esac