X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=build%2Fmod.mk;h=4b4f5525bca706556acf8f8870a5292e013e33da;hb=67f21784fddc61245b695bac18741540c0c66afb;hp=eac8f6ecf09ddd1cb9d34b8b89615b44192446ee;hpb=b1868895f7d630b8fcf1ee455efef05cfe98859e;p=openldap diff --git a/build/mod.mk b/build/mod.mk index eac8f6ecf0..4b4f5525bc 100644 --- a/build/mod.mk +++ b/build/mod.mk @@ -1,40 +1,44 @@ # $OpenLDAP$ -## Copyright 1998-2000 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-2010 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) - -COMPILE = $(LIBTOOL) $(LTFLAGS) --mode=compile $(CC) $(CFLAGS) $(MODDEFS) -c -LTLIBLINK = $(LIBTOOL) $(LTFLAGS) --mode=link $(CC) -rpath $(moduledir) \ - $(CFLAGS) $(LDFLAGS) $(LTVERSION) $(LT_NO_UNDEF) - MKDEPFLAG = -l .SUFFIXES: .c .o .lo .c.lo: - $(COMPILE) $< + $(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) > $@ -$(LIBRARY): $(MODDEPS) version.lo - $(LTLIBLINK) -module -o $@ $(OBJS) version.lo \ - $(MODLIBS) +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