]> git.sur5r.net Git - openldap/blobdiff - Makefile
Wrap $CC with quotes.
[openldap] / Makefile
index 05b7363c326f38d6eb3e2a4485ca0e86f80a0ce5..d910580217aa1ec345fb1709e92c8456eddf40ce 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,19 @@
-#
 # You will usually NOT need to edit this file at all:  instead, edit the
 # Make-common file.  See the LDAP INSTALL file for more information.
-#
+#-----------------------------------------------------------------------------
+# Copyright 1998 The OpenLDAP Foundation, Redwood City, California, USA
+# All rights reserved.
+# 
+# Redistribution and use in source and binary forms are permitted only
+# as authorized by the OpenLDAP Public License.  A copy of this
+# license is available at http://www.OpenLDAP.org/license.html or
+# in file LICENSE in the top-level directory of the distribution.
+# 
+# This work is derived from the University of Michigan LDAP v3.3
+# distribution.  Information concerning is available at
+#      http://www.umich.edu/~dirsvcs/ldap/ldap.html.
+# 
+# This work also contains materials derived from public sources.
 #-----------------------------------------------------------------------------
 # Copyright (c) 1994 Regents of the University of Michigan.
 # All rights reserved.
 # may not be used to endorse or promote products derived from this
 # software without specific prior written permission. This software
 # is provided ``as is'' without express or implied warranty.
-#
-#       LDAP lightweight X.500 Directory access top level makefile
-#
 #-----------------------------------------------------------------------------
+# LDAP lightweight X.500 Directory access top level makefile
 #
 ############################################################################
 #                                                                          #
@@ -161,8 +171,8 @@ depend:     makeconfig
        for i in $(SRCDIRS); do \
            echo; echo "cd $$i; $(MAKE) $(MFLAGS) depend"; \
            ( cd $$i; $(MAKE) $(MFLAGS) depend ); \
-       done; \
-       $(MAKE) $(MFLAGS) makefiles
+       done; 
+       @echo " "; echo Remember to \"make depend\" after each \"make makefiles\"
 
 #
 # rules to check out and in Make-template files
@@ -257,7 +267,12 @@ makeconfig:        .makefiles buildtools
                    echo "SunOS release $$OSRELEASE unknown..."; exit 1; \
                fi; \
                if [ $$OSRELEASE -ge "5" ]; then \
-                   PLATFORM="sunos5"; \
+                       MINORVER=`echo $$OSRELEASE|sed 's/^.*\.//'` ; \
+                       if [ $$MINORVER -ge "6" ]; then \
+                               PLATFORM="sunos56" ; \
+                       else \
+                       PLATFORM="sunos5"; \
+                       fi; \
                else \
                    PLATFORM="sunos4"; \
                fi; \
@@ -280,8 +295,16 @@ makeconfig:        .makefiles buildtools
            NetBSD) \
                PLATFORM="netbsd" \
                ;; \
+           OpenBSD) \
+               PLATFORM="openbsd" \
+               ;; \
            FreeBSD) \
-               PLATFORM="freebsd" \
+               MAJRELEASE=`echo $$OSRELEASE | sed 's/\..*//'` ; \
+               if [ $$MAJRELEASE -lt 3 ]; then \
+                       PLATFORM="freebsd2" ; \
+               else \
+                       PLATFORM="freebsd3" ; \
+               fi; \
                ;; \
            NeXTSTEP) \
                PLATFORM="nextstep" \
@@ -298,7 +321,7 @@ makeconfig: .makefiles buildtools
                ;; \
            esac; \
        fi; \
-       CC=$(CC); \
+       CC="$(CC)"; \
        OLDIFS="$$IFS"; \
        IFS=":"; \
        for dir in $$PATH; do \
@@ -313,6 +336,15 @@ makeconfig:        .makefiles buildtools
        echo "** Set platform to $$PLATFORM with compiler $$CC..."; \
        echo ""
 
+Make-common: Make-common.dist
+       @if [ -f Make-common ]; then \
+               echo "Make-common.dist newer than Make-common, check for new options" ;\
+               echo "or touch Make-common to ignore."; \
+               exit 1; \
+       fi; \
+       echo "Copy Make-common.dist or Make-common.gmake to Make-common"; \
+       echo "  Edit as needed before making!"  ; \
+       exit 1
 #
 # rule to build Makefiles by concatenating Make-template file in each
 # subdirectory with global Make-common, .make-platform, and
@@ -335,7 +367,6 @@ makeconfig: .makefiles buildtools
                echo "  creating $$i/Makefile"; \
                $(RM) $$i/Makefile; \
                $(CAT) $$HDRFILE $$i/Make-template $$DEFSFILE > $$i/Makefile; \
-               $(CHMOD) 444 $$i/Makefile; \
            fi; \
        done; \
        $(RM) .makefiles; \
@@ -348,6 +379,7 @@ makeconfig: .makefiles buildtools
 makefiles:     FORCE
        $(RM) .makefiles
        $(MAKE) $(MFLAGS) .makefiles
+       @echo "Please \"make depend\" before building."
 
 #
 # rule to create any tools we need to build everything else