blob: 5420662cc6ba8e37b2b381d8779cabed3b894d0c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#
# BEGIN COPYRIGHT BLOCK
# Copyright 2001 Sun Microsystems, Inc.
# Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
# All rights reserved.
# END COPYRIGHT BLOCK
#
#
# GNU Makefile for libldif
#
LDAP_SRC = ../..
MCOM_ROOT = ../../../..
NOSTDCLEAN=true # don't let nsconfig.mk define target clean
NOSTDSTRIP=true # don't let nsconfig.mk define target strip
NSPR20=true # probably should be defined somewhere else (not sure where)
OBJDEST = $(OBJDIR)/lib/libldif
LIBDIR = $(LDAP_LIBDIR)
include $(MCOM_ROOT)/ldapserver/nsdefs.mk
include $(MCOM_ROOT)/ldapserver/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk
CFLAGS += $(SLCFLAGS)
LIBLDIF_OBJS= line64.o fileurl.o
OBJS = $(addprefix $(OBJDEST)/, $(LIBLDIF_OBJS))
LIBLDIF= $(addprefix $(LIBDIR)/, libldif.$(LIB_SUFFIX))
clientSDK: all
all: $(OBJDEST) $(LIBDIR) $(OBJS) $(LIBLDIF)
$(LIBDIR):
$(MKDIR) $(LIBDIR)
$(LIBLDIF): $(OBJS)
$(LINK_LIB)
veryclean: clean
clean:
$(RM) $(OBJS)
$(RM) $(LIBLDIF)
$(OBJDEST):
$(MKDIR) $(OBJDEST)
|