1999-09-08 18:52:19 -04:00
|
|
|
# $OpenLDAP$
|
2002-01-04 16:17:25 -05:00
|
|
|
## Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
|
2000-05-12 22:43:19 -04:00
|
|
|
## COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
1998-10-24 21:41:42 -04:00
|
|
|
##
|
2000-01-25 18:58:44 -05:00
|
|
|
## Makefile for -llutil
|
1998-10-24 21:41:42 -04:00
|
|
|
##
|
|
|
|
|
|
|
|
|
|
LIBRARY = liblutil.a
|
1999-10-28 03:31:59 -04:00
|
|
|
|
2000-05-12 17:16:15 -04:00
|
|
|
NT_SRCS = ntservice.c
|
|
|
|
|
NT_OBJS = ntservice.o slapdmsg.res
|
1999-10-28 03:31:59 -04:00
|
|
|
|
|
|
|
|
UNIX_SRCS = detach.c
|
|
|
|
|
UNIX_OBJS = detach.o
|
|
|
|
|
|
2002-07-11 16:33:24 -04:00
|
|
|
SRCS = base64.c csn.c entropy.c sasl.c signal.c hash.c \
|
2001-12-05 00:39:34 -05:00
|
|
|
md5.c passwd.c sha1.c getpass.c lockf.c utils.c uuid.c sockpair.c \
|
1999-10-28 03:31:59 -04:00
|
|
|
@LIBSRCS@ $(@PLAT@_SRCS)
|
|
|
|
|
|
2002-07-11 16:33:24 -04:00
|
|
|
OBJS = base64.o csn.o entropy.o sasl.o signal.o hash.o \
|
2001-12-05 00:39:34 -05:00
|
|
|
md5.o passwd.o sha1.o getpass.o lockf.o utils.o uuid.o sockpair.o \
|
1999-10-28 03:31:59 -04:00
|
|
|
@LIBOBJS@ $(@PLAT@_OBJS)
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
LDAP_INCDIR= ../../include
|
|
|
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
|
|
1999-10-28 03:31:59 -04:00
|
|
|
# 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.res: slapdmsg.rc slapdmsg.bin
|
|
|
|
|
windres $< -O coff -o $@
|
|
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
|
$(RM) *.res
|
|
|
|
|
|