]> git.sur5r.net Git - openldap/commitdiff
Update mkdep with CC_MKDEP_FLAGS from devel.
authorKurt Zeilenga <kurt@openldap.org>
Fri, 26 Mar 1999 19:22:42 +0000 (19:22 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 26 Mar 1999 19:22:42 +0000 (19:22 +0000)
build/mkdep

index 6620fbfe8f940ae7fe07595cb840e59375194820..07fd779a907d453848a865283d95e37395c758d8 100755 (executable)
@@ -1,5 +1,9 @@
 #!/bin/sh -
+# Copyright 1998,1999 The OpenLDAP Foundation
+# COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
+# of this package for details.
 #
+# Portions
 # Copyright (c) 1987 Regents of the University of California.
 # All rights reserved.
 #
@@ -26,6 +30,7 @@ set -e                                # exit immediately if any errors occur
 MAKE=Makefile                  # default makefile name is "Makefile"
 NOSLASH="no"                   # by default, / dependencies are included
 CC=${CC-cc}                            # default compiler is cc
+: ${CC_MKDEP_FLAGS="-M"}       # cc -M usually produces dependencies
 SRCDIR=""
 SED=cat
 
@@ -122,12 +127,12 @@ cat << _EOF_ >> $TMP
 
 #
 # files: $*
-# command: $CC -M $files
+# command: $CC $CC_MKDEP_FLAGS $files
 #
 
 _EOF_
 
-$CC -M $files | \
+$CC $CC_MKDEP_FLAGS $files | \
        sed -e 's; \./; ;g' | \
        $SED | \
 awk '