mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
84 lines
1.8 KiB
Makefile
84 lines
1.8 KiB
Makefile
# $OpenLDAP$
|
|
## Copyright 1998-2003 The OpenLDAP Foundation
|
|
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
|
## of this package for details.
|
|
##---------------------------------------------------------------------------
|
|
##
|
|
## Makefile Template for Server Modules
|
|
##
|
|
|
|
LIBRARY = $(LIBBASE).la
|
|
LIBSTAT = lib$(LIBBASE).a
|
|
|
|
MKDEPFLAG = -l
|
|
|
|
.SUFFIXES: .c .o .lo
|
|
|
|
.c.lo:
|
|
$(LTCOMPILE_MOD) $<
|
|
|
|
all-no lint-no 5lint-no depend-no install-no: FORCE
|
|
@echo "run configure with $(BUILD_OPT) to make $(LIBBASE)"
|
|
|
|
all-common: all-$(BUILD_MOD)
|
|
|
|
version.c: Makefile
|
|
$(RM) $@
|
|
$(MKVERSION) $(LIBBASE) > $@
|
|
|
|
version.lo: version.c $(OBJS)
|
|
|
|
$(LIBRARY): version.lo
|
|
$(LTLINK_MOD) -module -o $@ $(OBJS) version.lo $(LINK_LIBS)
|
|
|
|
$(LIBSTAT): version.lo
|
|
$(AR) ruv $@ `echo $(OBJS) | sed 's/\.lo/.o/g'` version.o
|
|
@$(RANLIB) $@
|
|
|
|
clean-common: clean-lib FORCE
|
|
veryclean-common: veryclean-lib FORCE
|
|
|
|
|
|
lint-common: lint-$(BUILD_MOD)
|
|
|
|
5lint-common: 5lint-$(BUILD_MOD)
|
|
|
|
depend-common: depend-$(BUILD_MOD)
|
|
|
|
install-common: install-$(BUILD_MOD)
|
|
|
|
all-local-mod:
|
|
all-mod: $(LIBRARY) all-local-mod FORCE
|
|
|
|
all-local-lib:
|
|
all-yes: $(LIBSTAT) all-local-lib FORCE
|
|
|
|
install-mod: $(LIBRARY)
|
|
@-$(MKDIR) $(DESTDIR)$(moduledir)
|
|
$(LTINSTALL) $(INSTALLFLAGS) -m 755 $(LIBRARY) $(DESTDIR)$(moduledir)
|
|
|
|
install-local-lib:
|
|
install-yes: install-local-lib FORCE
|
|
|
|
lint-local-lib:
|
|
lint-yes lint-mod: lint-local-lib FORCE
|
|
$(LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
5lint-local-lib:
|
|
5lint-yes 5lint-mod: 5lint-local-lib FORCE
|
|
$(5LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
clean-local-lib:
|
|
clean-lib: clean-local-lib FORCE
|
|
$(RM) $(LIBRARY) $(LIBSTAT) version.c *.o *.lo a.out core .libs/*
|
|
|
|
depend-local-lib:
|
|
depend-yes depend-mod: depend-local-lib FORCE
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
veryclean-local-lib:
|
|
veryclean-lib: clean-lib veryclean-local-lib
|
|
|
|
Makefile: $(top_srcdir)/build/mod.mk
|
|
|