]> git.sur5r.net Git - openldap/blob - libraries/liblutil/Makefile.in
Notice/Acknowledge updates
[openldap] / libraries / liblutil / Makefile.in
1 # Makefile for -llutil
2 # $OpenLDAP$
3 ## Copyright 1998-2003 The OpenLDAP Foundation.
4 ## All rights reserved.
5 ##
6 ## Redistribution and use in source and binary forms, with or without
7 ## modification, are permitted only as authorized by the OpenLDAP
8 ## Public License.
9 ##
10 ## A copy of this license is available in the file LICENSE in the
11 ## top-level directory of the distribution or, alternatively, at
12 ## <http://www.OpenLDAP.org/license.html>.
13
14 LIBRARY = liblutil.a
15
16 NT_SRCS = ntservice.c
17 NT_OBJS = ntservice.o slapdmsg.res
18
19 UNIX_SRCS = detach.c
20 UNIX_OBJS = detach.o
21
22 SRCS    = base64.c csn.c entropy.c sasl.c signal.c hash.c passfile.c \
23         md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c \
24         ldif.c fetch.c \
25         @LIBSRCS@ $(@PLAT@_SRCS)
26
27 OBJS    = base64.o csn.o entropy.o sasl.o signal.o hash.o passfile.o \
28         md5.o passwd.o sha1.o getpass.o lockf.o utils.o uuid.o sockpair.o \
29         ldif.o fetch.o \
30         @LIBOBJS@ $(@PLAT@_OBJS)
31
32 LDAP_INCDIR= ../../include       
33 LDAP_LIBDIR= ../../libraries
34
35 # These rules are for a Mingw32 build, specifically.
36 # It's ok for them to be here because the clean rule is harmless, and
37 # slapdmsg.res won't get built unless it's declared in OBJS.
38
39 slapdmsg.res: slapdmsg.rc slapdmsg.bin
40         windres $< -O coff -o $@
41
42 clean-local:
43         $(RM) *.res
44