X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fsrv.mk;h=1a3b99353eac4064027b60eab80de210497d6e44;hb=415d9f50b28e7e9118acb9d5d47984670b3d8b03;hp=7bef5bebf448e3568d8b6e02a1a2ab2e66662abc;hpb=4662b7d12478b565b12b16604deb996ed61674e7;p=openldap diff --git a/build/srv.mk b/build/srv.mk index 7bef5bebf4..1a3b99353e 100644 --- a/build/srv.mk +++ b/build/srv.mk @@ -1,73 +1,59 @@ -##--------------------------------------------------------------------------- +# $OpenLDAP$ +## This work is part of OpenLDAP Software . ## -## Makefile Template for Servers +## Copyright 1998-2006 The OpenLDAP Foundation. +## All rights reserved. ## +## 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 +## . +##--------------------------------------------------------------------------- +# +# 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