]> git.sur5r.net Git - openldap/blob - libraries/liblutil/Makefile.in
9e2ad3b6a485012322bb0725865c83e1704034e1
[openldap] / libraries / liblutil / Makefile.in
1 # Makefile for -llutil
2 # $OpenLDAP$
3 ## This work is part of OpenLDAP Software <http://www.openldap.org/>.
4 ## 
5 ## Copyright 1998-2017 The OpenLDAP Foundation.
6 ## All rights reserved.
7 ##
8 ## Redistribution and use in source and binary forms, with or without
9 ## modification, are permitted only as authorized by the OpenLDAP
10 ## Public License.
11 ##
12 ## A copy of this license is available in the file LICENSE in the
13 ## top-level directory of the distribution or, alternatively, at
14 ## <http://www.OpenLDAP.org/license.html>.
15
16 LIBRARY = liblutil.a
17 PROGRAM = testavl
18
19 LDAP_INCDIR= ../../include       
20 LDAP_LIBDIR= ../../libraries
21
22 NT_SRCS = ntservice.c
23 NT_OBJS = ntservice.o slapdmsg.res
24
25 UNIX_SRCS = detach.c
26 UNIX_OBJS = detach.o
27
28 XLIBS = $(LIBRARY) $(LDAP_LIBLBER_LA)
29
30 SRCS    = base64.c entropy.c sasl.c signal.c hash.c passfile.c \
31         md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c \
32         avl.c tavl.c \
33         testavl.c \
34         meter.c \
35         @LIBSRCS@ $(@PLAT@_SRCS)
36
37 OBJS    = base64.o entropy.o sasl.o signal.o hash.o passfile.o \
38         md5.o passwd.o sha1.o getpass.o lockf.o utils.o uuid.o sockpair.o \
39         avl.o tavl.o \
40         meter.o \
41         @LIBOBJS@ $(@PLAT@_OBJS)
42
43 testavl: $(XLIBS) testavl.o
44         $(LTLINK) -o $@ testavl.o $(LIBS)
45
46 testtavl: $(XLIBS) testtavl.o
47         $(LTLINK) -o $@ testtavl.o $(LIBS)
48
49 # These rules are for a Mingw32 build, specifically.
50 # It's ok for them to be here because the clean rule is harmless, and
51 # slapdmsg.res won't get built unless it's declared in OBJS.
52
53 slapdmsg.bin: FORCE
54         @if [ ! -f $@ ]; then cp $(srcdir)/$@ .; fi
55
56 slapdmsg.res: slapdmsg.rc slapdmsg.bin
57         windres $< -O coff -o $@
58
59 clean-local:
60         $(RM) *.res
61