X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmod.mk;h=95f88ad0d7c61189431fd1f13253dddc2da4064c;hb=727a16ca55fd39d60f5515be3d365c6096bdb7bc;hp=7a9c45925f5b8b2921cc877b0d66635aca62d7be;hpb=ed75be1b3cfdbc25320926d727b400601ef5b49e;p=openldap diff --git a/build/mod.mk b/build/mod.mk index 7a9c45925f..95f88ad0d7 100644 --- a/build/mod.mk +++ b/build/mod.mk @@ -1,27 +1,44 @@ # $OpenLDAP$ -## Copyright 1998,1999 The OpenLDAP Foundation -## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory -## of this package for details. -##--------------------------------------------------------------------------- +## This work is part of OpenLDAP Software . +## +## Copyright 1998-2006 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 +## . +##--------------------------------------------------------------------------- +# +# Makefile Template for Server Modules +# LIBRARY = $(LIBBASE).la LIBSTAT = lib$(LIBBASE).a -LTFLAGS = --only-$(LINKAGE) + +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 $(MODLIBS) + $(LTLINK_MOD) -module -o $@ $(OBJS) version.lo $(LINK_LIBS) $(LIBSTAT): version.lo $(AR) ruv $@ `echo $(OBJS) | sed 's/\.lo/.o/g'` version.o @@ -71,12 +88,5 @@ depend-yes depend-mod: depend-local-lib FORCE veryclean-local-lib: veryclean-lib: clean-lib veryclean-local-lib -COMPILE = $(LIBTOOL) $(LTFLAGS) --mode=compile $(CC) $(CFLAGS) -c -MKDEPFLAG = -l - -.SUFFIXES: .c .o .lo - -.c.lo: - $(COMPILE) $< - Makefile: $(top_srcdir)/build/mod.mk +