X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fsrv.mk;h=b735c374fc72adf75fd3a31da143b54347c11fe5;hb=ba6e6b4640c1d08ffb4cab46f063bc0cc8aa3493;hp=461549bd732a845020b2e753a99c3feb930aa06b;hpb=319aa913162c0e16592b8b41d26adf4ba4a98176;p=openldap diff --git a/build/srv.mk b/build/srv.mk index 461549bd73..b735c374fc 100644 --- a/build/srv.mk +++ b/build/srv.mk @@ -1,49 +1,57 @@ +# $OpenLDAP$ +## Copyright 1998-2005 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: FORCE - @if [ "$(BUILD_SRV)" = "yes" ]; then \ - $(MAKE) $(MFLAGS) all-srv; \ - else \ - echo "run configure with $(BUILD_OPT) to build $(PROGRAMS)"; \ - fi - -clean: clean-srv FORCE -lint: FORCE - @if [ "$(BUILD_SRV)" = "yes" ]; then \ - $(MAKE) $(MFLAGS) lint-srv; \ - else \ - echo "run configure with $(BUILD_OPT) to lint $(PROGRAMS)"; \ - fi - -5lint: FORCE - @if [ "$(BUILD_SRV)" = "yes" ]; then \ - $(MAKE) $(MFLAGS) 5lint-srv; \ - else \ - echo "run configure with $(BUILD_OPT) to 5lint $(PROGRAMS)"; \ - fi - -depend: FORCE - @if [ "$(BUILD_SRV)" = "yes" ]; then \ - $(MAKE) $(MFLAGS) depend-srv; \ - else \ - echo "run configure with $(BUILD_OPT) to mkdepend $(PROGRAMS)"; \ - fi - -all-srv: FORCE - -install-srv: all-srv FORCE - -lint-srv: FORCE +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: 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 +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-local-srv: +veryclean-srv: clean-srv veryclean-local-srv + +Makefile: $(top_srcdir)/build/srv.mk