X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fsrv.mk;h=7033cb4af7c5f9c9a96cd9a15af0cc28b40a1eca;hb=aec5adac17c4253ff92a9e55e27710bc86a8b93e;hp=6f1ad9637b870247dae840c9b04b3cc705dc5598;hpb=475fd6dc456ea950d937ccbc4bbc7f2501017c65;p=openldap diff --git a/build/srv.mk b/build/srv.mk index 6f1ad9637b..7033cb4af7 100644 --- a/build/srv.mk +++ b/build/srv.mk @@ -1,62 +1,59 @@ -##--------------------------------------------------------------------------- +# $OpenLDAP$ +## This work is part of OpenLDAP Software . +## +## Copyright 1998-2011 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 +## . +##--------------------------------------------------------------------------- +# +# 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 +all-common: all-$(BUILD_SRV) +all-no lint-no 5lint-no depend-no install-no: + @echo "run configure with $(BUILD_OPT) to make $(PROGRAMS)" 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 - -5lint-common: FORCE - @if [ "$(BUILD_SRV)" = "yes" ]; then \ - $(MAKE) $(MFLAGS) 5lint-srv; \ - else \ - echo "run configure with $(BUILD_OPT) to 5lint $(PROGRAMS)"; \ - fi - -depend-common: FORCE - @if [ "$(BUILD_SRV)" = "yes" ]; then \ - $(MAKE) $(MFLAGS) depend-srv; \ - else \ - echo "run configure with $(BUILD_OPT) to depend $(PROGRAMS)"; \ - fi - -install-common: FORCE - @if [ "$(BUILD_SRV)" = "yes" ]; then \ - $(MAKE) $(MFLAGS) install-srv; \ - else \ - echo "run configure with $(BUILD_OPT) to install $(PROGRAMS)"; \ - fi - -all-srv: FORCE - -install-srv: FORCE - -lint-srv: FORCE +lint-common: lint-$(BUILD_SRV) + +5lint-common: 5lint-$(BUILD_SRV) + +depend-common: depend-$(BUILD_SRV) + +install-common: install-$(BUILD_SRV) + +all-local-srv: +all-yes: all-local-srv FORCE + +install-local-srv: +install-yes: install-local-srv FORCE + +lint-local-srv: +lint-yes: lint-local-srv FORCE $(LINT) $(DEFS) $(DEFINES) $(SRCS) -5lint-srv: FORCE +5lint-local-srv: +5lint-yes: 5lint-local-srv FORCE $(5LINT) $(DEFS) $(DEFINES) $(SRCS) -clean-srv: FORCE - $(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o a.out core .libs/* +clean-local-srv: +clean-srv: clean-local-srv FORCE + $(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o a.out core .libs/* *.exe -depend-srv: FORCE +depend-local-srv: +depend-yes: depend-local-srv FORCE $(MKDEP) $(DEFS) $(DEFINES) $(SRCS) -veryclean-srv: clean-srv +veryclean-local-srv: +veryclean-srv: clean-srv veryclean-local-srv Makefile: $(top_srcdir)/build/srv.mk