diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:35:32 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 16:35:32 +0000 |
commit | 5ea77a75dd2d2158401331879f3c8f47940a732c (patch) | |
tree | d89dc06e9f4850a900f161e25f84e922c4f86cc8 /build/srv.mk | |
parent | Initial commit. (diff) | |
download | openldap-upstream/2.5.13+dfsg.tar.xz openldap-upstream/2.5.13+dfsg.zip |
Adding upstream version 2.5.13+dfsg.upstream/2.5.13+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'build/srv.mk')
-rw-r--r-- | build/srv.mk | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/build/srv.mk b/build/srv.mk new file mode 100644 index 0000000..e96865a --- /dev/null +++ b/build/srv.mk @@ -0,0 +1,59 @@ +# $OpenLDAP$ +## This work is part of OpenLDAP Software <http://www.openldap.org/>. +## +## Copyright 1998-2022 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 +## <http://www.OpenLDAP.org/license.html>. +##--------------------------------------------------------------------------- +# +# Makefile Template for Servers +# + +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-local-srv: +5lint-yes: 5lint-local-srv FORCE + $(5LINT) $(DEFS) $(DEFINES) $(SRCS) + +clean-local-srv: +clean-srv: clean-local-srv FORCE + $(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o a.out core .libs/* *.exe + +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 |