]> git.sur5r.net Git - openldap/blobdiff - build/mod.mk
Fix prev commit
[openldap] / build / mod.mk
index 4d7346a123bf94f457577fac7187b9f22c9c7bcc..50f54b2e7414fd3a1ea88d13b50b6900d6989667 100644 (file)
@@ -1,26 +1,44 @@
-## Copyright 1998,1999 The OpenLDAP Foundation
-## COPYING RESTRICTIONS APPLY.  See COPYRIGHT File in top level directory
-## of this package for details.
-##---------------------------------------------------------------------------
+# $OpenLDAP$
+## This work is part of OpenLDAP Software <http://www.openldap.org/>.
+##
+## Copyright 1998-2008 The OpenLDAP Foundation.
+## All rights reserved.
 ##
-## Makefile Template for Server Modules
+## 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 Server Modules
+#
 
 LIBRARY = $(LIBBASE).la
 LIBSTAT = lib$(LIBBASE).a
-LTFLAGS = --only-$(LINKAGE)
 
-all-no lint-no 5lint-no depend-no install-no:
+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: $(OBJS)
+version.c: Makefile
        $(RM) $@
        $(MKVERSION) $(LIBBASE) > $@
 
+version.lo: version.c $(OBJS)
+
 $(LIBRARY): version.lo
-       $(LTLIBLINK) -module -rpath $(moduledir) -o $@ $(OBJS) 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
@@ -45,8 +63,8 @@ all-local-lib:
 all-yes: $(LIBSTAT) all-local-lib FORCE
 
 install-mod: $(LIBRARY)
-       @-$(MKDIR) $(moduledir)
-       $(LTINSTALL) $(INSTALLFLAGS) -m 755 $(LIBRARY) $(moduledir)
+       @-$(MKDIR) $(DESTDIR)$(moduledir)
+       $(LTINSTALL) $(INSTALLFLAGS) -m 755 $(LIBRARY) $(DESTDIR)$(moduledir)
 
 install-local-lib:
 install-yes: install-local-lib FORCE
@@ -67,12 +85,8 @@ depend-local-lib:
 depend-yes depend-mod: depend-local-lib FORCE
        $(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
 
-COMPILE = $(LIBTOOL) $(LTFLAGS) --mode=compile $(CC) $(CFLAGS) -c
-MKDEPFLAG = -l
-
-.SUFFIXES: .c .o .lo
-
-.c.lo:
-       $(COMPILE) $<
+veryclean-local-lib:
+veryclean-lib:         clean-lib veryclean-local-lib
 
 Makefile: $(top_srcdir)/build/mod.mk
+