X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;ds=sidebyside;f=libraries%2Fliblutil%2FMakefile.in;h=b527966ebb36aea762524a5d715c375fe552bc4d;hb=70792ad7a9fa962c98580f3a4c2a71d0aee982c0;hp=03d012a0de80bd7194204857250535fee72b4618;hpb=75d6e3f7382ee697ba4e33e11a9a06fb7d2f546c;p=openldap diff --git a/libraries/liblutil/Makefile.in b/libraries/liblutil/Makefile.in index 03d012a0de..b527966ebb 100644 --- a/libraries/liblutil/Makefile.in +++ b/libraries/liblutil/Makefile.in @@ -1,11 +1,61 @@ +# Makefile for -llutil +# $OpenLDAP$ +## This work is part of OpenLDAP Software . +## +## Copyright 1998-2010 The OpenLDAP Foundation. +## All rights reserved. ## -## Makefile for -lutil +## 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 +## . LIBRARY = liblutil.a -SRCS = base64.c detach.c md5.c passwd.c sha1.c getpass.c lockf.c -OBJS = base64.o detach.o md5.o passwd.o sha1.o getpass.o lockf.o @LIBOBJS@ +PROGRAM = testavl LDAP_INCDIR= ../../include LDAP_LIBDIR= ../../libraries +NT_SRCS = ntservice.c +NT_OBJS = ntservice.o slapdmsg.res + +UNIX_SRCS = detach.c +UNIX_OBJS = detach.o + +XLIBS = $(LIBRARY) $(LDAP_LIBLBER_LA) + +SRCS = base64.c entropy.c sasl.c signal.c hash.c passfile.c \ + md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c \ + avl.c tavl.c ldif.c fetch.c \ + testavl.c \ + meter.c \ + @LIBSRCS@ $(@PLAT@_SRCS) + +OBJS = base64.o entropy.o sasl.o signal.o hash.o passfile.o \ + md5.o passwd.o sha1.o getpass.o lockf.o utils.o uuid.o sockpair.o \ + avl.o tavl.o ldif.o fetch.o \ + meter.o \ + @LIBOBJS@ $(@PLAT@_OBJS) + +testavl: $(XLIBS) testavl.o + (LTLINK) -o $@ testavl.o $(LIBS) + +testtavl: $(XLIBS) testtavl.o + (LTLINK) -o $@ testtavl.o $(LIBS) + +# These rules are for a Mingw32 build, specifically. +# It's ok for them to be here because the clean rule is harmless, and +# slapdmsg.res won't get built unless it's declared in OBJS. + +slapdmsg.bin: FORCE + @if [ ! -f $@ ]; then cp $(srcdir)/$@ .; fi + +slapdmsg.res: slapdmsg.rc slapdmsg.bin + windres $< -O coff -o $@ + +clean-local: + $(RM) *.res +