summaryrefslogtreecommitdiffstats
path: root/ldap/admin/Makefile
blob: 3f8ba6e09823e2819e5ae404b7c00f462cf7b1bf (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
#
# 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 Directory Server Admin components
#

BUILD_ROOT = ../..
LDAP_SRC = ../

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)

include $(BUILD_ROOT)/nsdefs.mk
include $(BUILD_ROOT)/nsconfig.mk
include $(LDAP_SRC)/nsldap.mk

all:
	cd include; $(MAKE) $(MFLAGS) all
	cd lib; $(MAKE) $(MFLAGS) all
	cd src; $(MAKE) $(MFLAGS) all

veryclean: clean

clean:
	cd include; $(MAKE) $(MFLAGS) clean
	cd lib; $(MAKE) $(MFLAGS) clean
	cd src; $(MAKE) $(MFLAGS) clean