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=../../../..;
10 echo "Can't find config.sh."; exit 1
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.
18 */*) cd `expr X$0 : 'X\(.*\)/'` ;;
21 echo "Extracting makedepend (with variable substitutions)"
23 $spitshell >makedepend <<!GROK!THIS!
30 $spitshell >>makedepend <<'!NO!SUBS!'
32 # This script should be called with
33 # sh ./makedepend MAKE=$(MAKE)
38 export PATH || (echo "OOPS, this isn't sh. Desperation time. I will feed myself to sh."; sh \$0; kill \$\$)
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=../../../..;
48 echo "Can't find config.sh."; exit 1
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"
61 $cat /dev/null >.deptmp
63 if test -f Makefile; then
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:
70 *) $touch $firstmakefile ;;
75 defrule=`<$mf sed -n \
76 -e '/^\.c\$(OBJ_EXT):.*;/{' \
78 -e 's/^[^;]*;[ ]*//p' \
81 -e '/^\.c\$(OBJ_EXT): *$/{' \
89 '') defrule='$(CC) -c $(CFLAGS)' ;;
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
95 $test -d UU || mkdir UU
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
102 *.c) filebase=`basename $file .c` ;;
103 *.y) filebase=`basename $file .y` ;;
106 */*) finc="-I`echo $file | sed 's#/[^/]*$##`" ;;
109 $echo "Finding dependencies for $filebase$_o."
110 ( $echo "#line 1 \"$file\""; \
112 -e "/^${filebase}_init(/q" \
119 $cppstdin $finc -I. $cppflags $cppminus <UU/$file.c |
121 -e '/^#.*<stdin>/d' \
123 -e 's#\.[0-9][0-9]*\.c#'"$file.c#" \
124 -e 's/^[ ]*#[ ]*line/#/' \
125 -e '/^# *[0-9][0-9]* *[".\/]/!d' \
126 -e 's/^.*"\(.*\)".*$/'$filebase'\$(OBJ_EXT): \1/' \
127 -e 's/^# *[0-9][0-9]* \(.*\)$/'$filebase'\$(OBJ_EXT): \1/' \
129 -e 's|\.c\.c|.c|' | \
130 $uniq | $sort | $uniq >> .deptmp
133 $sed <$mf >$mf.new -e '1,/^# AUTOMATICALLY/!d'
135 $MAKE shlist || ($echo "Searching for .SH files..."; \
136 $echo *.SH | $tr ' ' $trnl | $egrep -v '\*' >.shlist)
138 # Now extract the dependencies on makedepend.SH and Makefile.SH
139 # (they should reside in the main Makefile):
141 mv .shlist .shlist.old
142 $egrep -v '^makedepend\.SH' <.shlist.old >.shlist
144 mv .shlist .shlist.old
145 $egrep -v '^Makefile\.SH' <.shlist.old >.shlist
147 mv .shlist .shlist.old
148 $egrep -v '^perl_exp\.SH' <.shlist.old >.shlist
150 mv .shlist .shlist.old
151 $egrep -v '^config_h\.SH' <.shlist.old >.shlist
154 if $test -s .deptmp; then
155 for file in `cat .shlist`; do
156 $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
159 $echo "Updating $mf..."
160 $echo "# If this runs make out of memory, delete /usr/include lines." \
162 $sed 's|^\(.*\$(OBJ_EXT):\) *\(.*/.*\.c\) *$|\1 \2; '"$defrule \2|" .deptmp \
165 $MAKE hlist || ($echo "Searching for .h files..."; \
166 $echo *.h | $tr ' ' $trnl | $egrep -v '\*' >.hlist)
167 $echo "You don't seem to have a proper C preprocessor. Using grep instead."
168 $egrep '^#include ' `cat .clist` `cat .hlist` >.deptmp
169 $echo "Updating $mf..."
172 -e 's|^\(.*\)/\(.*\)\.c|\2\$(OBJ_EXT): \1/\2.c; '"$defrule \1/\2.c|p" \
175 -e 's|^\(.*\)\.c|\1\$(OBJ_EXT): \1.c|p' >> $mf.new
176 <.hlist $sed -n 's|\(.*/\)\(.*\)|s= \2= \1\2=|p' >.hsed
177 <.deptmp $sed -n 's|c:#include "\(.*\)".*$|o: \1|p' | \
178 $sed 's|^[^;]*/||' | \
179 $sed -f .hsed >> $mf.new
180 <.deptmp $sed -n 's|h:#include "\(.*\)".*$|h: \1|p' | \
181 $sed -f .hsed >> $mf.new
182 for file in `$cat .shlist`; do
183 $echo `$expr X$file : 'X\(.*\).SH'`: $file $TOP/config.sh \; \
192 $echo "# WARNING: Put nothing here or make depend will gobble it up!" >> $mf
193 $rm -rf .deptmp UU .shlist .clist .hlist .hsed
196 $eunicefix makedepend
201 ln makedepend ../makedepend