]> git.sur5r.net Git - openldap/blob - build/mkdep
Y2k copyright update
[openldap] / build / mkdep
1 #! /bin/sh -
2 # $OpenLDAP$
3 ## Copyright 1998-2000 The OpenLDAP Foundation
4 ## COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
5 ## of this package for details.
6 #
7 # Portions
8 # Copyright (c) 1987 Regents of the University of California.
9 # All rights reserved.
10 #
11 # Redistribution and use in source and binary forms are permitted
12 # provided that the above copyright notice and this paragraph are
13 # duplicated in all such forms and that any documentation,
14 # advertising materials, and other materials related to such
15 # distribution and use acknowledge that the software was developed
16 # by the University of California, Berkeley.  The name of the
17 # University may not be used to endorse or promote products derived
18 # from this software without specific prior written permission.
19 # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
20 # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
21 # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
22 #
23 #       @(#)mkdep.sh    5.12 (Berkeley) 6/30/88
24 #
25 # We now use whatever path is already set by the invoker
26 #PATH=/bin:/usr/bin:/usr/ucb
27 #export PATH
28
29 set -e                          # exit immediately if any errors occur
30
31 MAKE=Makefile                   # default makefile name is "Makefile"
32 NOSLASH="no"                    # by default, / dependencies are included
33 SRCDIR=""
34 SED=cat
35
36 : ${CC=cc}                                      # use cc by default
37
38 # We generally set these via the command line options
39 : ${MKDEP_CC=$CC}                       # select default compiler to generate dependencies
40 : ${MKDEP_CFLAGS="-M"}  # cc -M usually produces dependencies
41
42 while :
43         do case "$1" in
44                 # the -s flag removes dependencies to files that begin with /
45                 -s)
46                         NOSLASH=yes;
47                         shift ;;
48
49                 # -f allows you to select a makefile name
50                 -f)
51                         MAKE=$2
52                         shift; shift ;;
53
54                 # -d allows you to select a VPATH directory
55                 -d)
56                         SRCDIR=$2
57                         shift; shift ;;
58
59                 # -c allows you to override the compiler used to generate dependencies
60                 -c)
61                         MKDEP_CC=$2
62                         shift; shift ;;
63
64                 # -m allows you to override the compiler flags used to generate
65                 # dependencies.
66                 -m)
67                         MKDEP_CFLAGS=$2
68                         shift; shift ;;
69
70                 # the -p flag produces "program: program.c" style dependencies
71                 # so .o's don't get produced
72                 -p)
73                         SED='sed -e s;\.o;;'
74                         shift ;;
75
76                 # the -l flag produces libtool compatible dependencies
77                 -l)
78                         SED='sed -e s;\.o:;.lo:;'
79                         shift ;;
80
81 #               -*)     shift ;;
82
83                 *)
84                         break ;;
85         esac
86 done
87
88 if test $# = 0 ; then
89         echo 'usage: mkdep [-p] [-s] [-c cc] [-m flags] [-f makefile] [-d srcdir] [cppflags] file ...'
90         exit 1
91 fi
92
93 if test ! -w $MAKE ; then
94         echo "mkdep: no writeable file \"$MAKE\""
95         exit 1
96 fi
97
98 TMP=/tmp/mkdep$$
99
100 trap 'rm -f $TMP.sed $TMP ; exit 1' 1 2 3 13 15
101
102 cp $MAKE ${MAKE}.bak
103
104 sed -e '/DO NOT DELETE THIS LINE/,$d' < $MAKE > $TMP
105
106 cat << _EOF_ >> $TMP
107 # DO NOT DELETE THIS LINE -- mkdep uses it.
108 # DO NOT PUT ANYTHING AFTER THIS LINE, IT WILL GO AWAY.
109
110 _EOF_
111
112 # If your compiler doesn't have -M, add it.  If you can't, the next two
113 # lines will try and replace the "cc -M".  The real problem is that this
114 # hack can't deal with anything that requires a search path, and doesn't
115 # even try for anything using bracket (<>) syntax.
116 #
117 # egrep '^#include[     ]*".*"' /dev/null $* |
118 # sed -e 's/:[^"]*"\([^"]*\)".*/: \1/' -e 's/\.c/.o/' |
119
120 if test "x$SRCDIR" = "x" ; then
121         files=$*
122 else
123         files=
124         for i in $* ; do
125                 if test -f $i ; then
126                         files="$files $i"
127                 elif test -f $SRCDIR/$i ; then
128                         files="$files $SRCDIR/$i"
129                 else
130                         files="$files $i"
131                 fi
132         done
133
134         MKDEP_CFLAGS="$MKDEP_CFLAGS -I$SRCDIR"
135 fi
136
137 cat << _EOF_ >> $TMP
138
139 #
140 # files: $*
141 # command: $MKDEP_CC $MKDEP_CFLAGS $files
142 #
143
144 _EOF_
145
146 $MKDEP_CC $MKDEP_CFLAGS $files | \
147         sed -e 's; \./; ;g' | \
148         $SED > $TMP.sed
149 # do not pipe to awk.  SGI awk wants a filename as argument.
150 # (or '-', but I do not know if all other awks support that.)
151 awk '
152 $1 ~ /:$/ {
153         filenm=$1
154         dep=substr($0, length(filenm)+1)
155 }
156 $1 !~ /:$/ {
157         dep=$0
158 }
159 /.*/ {
160         if ( length(filenm) < 2 ) next
161         if ( filenm ~ /:.*:$/ ) next
162         split(dep, depends, " ")
163         for(d in depends) {
164                 dfile = depends[d]
165                 if ( length(dfile) < 2 ) continue
166                 if ( dfile ~ /:/ ) continue
167                 if (( noslash == "yes") && (dfile ~ /^\// )) continue
168                 rec = filenm " " dfile
169                 print rec
170         }
171 }
172 ' noslash="$NOSLASH" $TMP.sed >> $TMP
173
174
175 cat << _EOF_ >> $TMP
176
177 # IF YOU PUT ANYTHING HERE IT WILL GO AWAY
178 _EOF_
179
180 # copy to preserve permissions
181 cp $TMP $MAKE
182 rm -f ${MAKE}.bak $TMP.sed $TMP
183 exit 0