]> git.sur5r.net Git - openldap/blobdiff - build/srv.mk
Add BDB 4.3 detection
[openldap] / build / srv.mk
index 7bef5bebf448e3568d8b6e02a1a2ab2e66662abc..7337172c06e20bae0be7c3fd4eb673188ee21f6e 100644 (file)
@@ -1,73 +1,57 @@
-##---------------------------------------------------------------------------
+# $OpenLDAP$
+## Copyright 1998-2004 The OpenLDAP Foundation.
+## All rights reserved.
 ##
-## Makefile Template for Servers
+## Redistribution and use in source and binary forms, with or without
+## modification, are permitted only as authorized by the OpenLDAP
+## Public License.
 ##
+## A copy of this license is available in the file LICENSE in the
+## top-level directory of the distribution or, alternatively, at
+## <http://www.OpenLDAP.org/license.html>.
+##---------------------------------------------------------------------------
+#
+# Makefile Template for Servers
+#
 
-all-common: FORCE
-       @if [ "$(BUILD_SRV)" = "yes" ]; then \
-               $(MAKE) $(MFLAGS) all-srv; \
-       else \
-               echo "run configure with $(BUILD_OPT) to build $(PROGRAMS)"; \
-       fi
-
-clean-common: FORCE
-       @if [ "$(BUILD_SRV)" = "yes" ]; then \
-               $(MAKE) $(MFLAGS) clean-srv; \
-       else \
-               echo "run configure with $(BUILD_OPT) to clean $(PROGRAMS)"; \
-       fi
+all-common: all-$(BUILD_SRV)
+all-no lint-no 5lint-no depend-no install-no:
+       @echo "run configure with $(BUILD_OPT) to make $(PROGRAMS)"
 
-veryclean-common: FORCE
-       @if [ "$(BUILD_SRV)" = "yes" ]; then \
-               $(MAKE) $(MFLAGS) veryclean-srv; \
-       else \
-               echo "run configure with $(BUILD_OPT) to very clean $(PROGRAMS)"; \
-       fi
+clean-common: clean-srv FORCE
+veryclean-common: veryclean-srv FORCE
 
-lint-common: FORCE
-       @if [ "$(BUILD_SRV)" = "yes" ]; then \
-               $(MAKE) $(MFLAGS) lint-srv; \
-       else \
-               echo "run configure with $(BUILD_OPT) to lint $(PROGRAMS)"; \
-       fi
+lint-common: lint-$(BUILD_SRV)
 
-5lint-common: FORCE
-       @if [ "$(BUILD_SRV)" = "yes" ]; then \
-               $(MAKE) $(MFLAGS) 5lint-srv; \
-       else \
-               echo "run configure with $(BUILD_OPT) to 5lint $(PROGRAMS)"; \
-       fi
+5lint-common: 5lint-$(BUILD_SRV)
 
-depend-common: FORCE
-       @if [ "$(BUILD_SRV)" = "yes" ]; then \
-               $(MAKE) $(MFLAGS) depend-srv; \
-       else \
-               echo "run configure with $(BUILD_OPT) to depend $(PROGRAMS)"; \
-       fi
+depend-common: depend-$(BUILD_SRV)
 
-install-common: FORCE
-       @if [ "$(BUILD_SRV)" = "yes" ]; then \
-               $(MAKE) $(MFLAGS) install-srv; \
-       else \
-               echo "run configure with $(BUILD_OPT) to install $(PROGRAMS)"; \
-       fi
+install-common: install-$(BUILD_SRV)
 
-all-srv: all-local
+all-local-srv:
+all-yes: all-local-srv FORCE
 
-install-srv: all-srv install-local
+install-local-srv:
+install-yes: install-local-srv FORCE
 
-lint-srv: lint-local
+lint-local-srv:
+lint-yes: lint-local-srv FORCE
        $(LINT) $(DEFS) $(DEFINES) $(SRCS)
 
-5lint-srv: lint5-local
+5lint-local-srv:
+5lint-yes: 5lint-local-srv FORCE
        $(5LINT) $(DEFS) $(DEFINES) $(SRCS)
 
-clean-srv:     clean-local
-       $(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o a.out core
+clean-local-srv:
+clean-srv:     clean-local-srv FORCE
+       $(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o a.out core .libs/* *.exe
 
-depend-srv: depend-local
+depend-local-srv:
+depend-yes: depend-local-srv FORCE
        $(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
 
-veryclean-srv:         clean-srv veryclean-local
+veryclean-local-srv:
+veryclean-srv:         clean-srv veryclean-local-srv
 
 Makefile: $(top_srcdir)/build/srv.mk