1999-09-09 06:52:19 +08:00
|
|
|
# $OpenLDAP$
|
1998-10-25 09:41:42 +08:00
|
|
|
##
|
2000-01-26 07:58:44 +08:00
|
|
|
## Makefile for -llutil
|
1998-10-25 09:41:42 +08:00
|
|
|
##
|
|
|
|
|
|
|
|
LIBRARY = liblutil.a
|
1999-10-28 15:31:59 +08:00
|
|
|
|
|
|
|
NT_SRCS = nt_err.c ntservice.c
|
|
|
|
NT_OBJS = nt_err.o ntservice.o slapdmsg.res
|
|
|
|
|
|
|
|
UNIX_SRCS = detach.c
|
|
|
|
UNIX_OBJS = detach.o
|
|
|
|
|
|
|
|
SRCS = base64.c debug.c entropy.c \
|
|
|
|
md5.c passwd.c sha1.c getpass.c lockf.c utils.c sockpair.c \
|
|
|
|
@LIBSRCS@ $(@PLAT@_SRCS)
|
|
|
|
|
|
|
|
OBJS = base64.o debug.o entropy.o \
|
1999-08-31 11:25:23 +08:00
|
|
|
md5.o passwd.o sha1.o getpass.o lockf.o utils.o sockpair.o \
|
1999-10-28 15:31:59 +08:00
|
|
|
@LIBOBJS@ $(@PLAT@_OBJS)
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
LDAP_INCDIR= ../../include
|
|
|
|
LDAP_LIBDIR= ../../libraries
|
|
|
|
|
1999-11-28 07:40:08 +08:00
|
|
|
NT_DYN_LIB_DEFS = -DLIBLDAP_DECL=dllimport
|
|
|
|
CPPFLAGS = $(@PLAT@_@LIB_LINKAGE@_LIB_DEFS)
|
|
|
|
|
1999-10-28 15:31:59 +08: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
|
|
|
|
|