blob: 9d5508751e128b7456359164a6fb66124e87ab36 (
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
|
#
# BEGIN COPYRIGHT BLOCK
# Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
# Copyright (C) 2005 Red Hat, Inc.
# All rights reserved.
# END COPYRIGHT BLOCK
#
#
# GNU Makefile for Directory Server Admin include directory.
#
BUILD_ROOT = ../../..
LDAP_SRC = ../..
NOSTDCLEAN=true # don't let nsconfig.mk define target clean
include $(BUILD_ROOT)/nsdefs.mk
include $(BUILD_ROOT)/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk
HDRDEST=$(LDAP_ADMROOT)/include
HEADERS=dsalib.h dsalib_pw.h
BINS=$(addprefix $(HDRDEST)/,$(HEADERS))
all: $(HDRDEST) $(BINS)
strip:
depend:
clean:
-$(RM) $(BINS)
$(HDRDEST)/%.h: %.h
-@$(RM) $@
$(CP) $< $@
|