summaryrefslogtreecommitdiffstats
path: root/ldap/libraries/Makefile.client
blob: 5aa0ab20c47c1388388c36063edb908c920fc6ee (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
#
# BEGIN COPYRIGHT BLOCK
# Copyright 2001 Sun Microsystems, Inc.
# Portions copyright 1999, 2001-2003 Netscape Communications Corporation.
# All rights reserved.
# END COPYRIGHT BLOCK
#
DEPTH		= ../../..
UNIXDIRLIST	= liblber libldap

include $(DEPTH)/config/rules.mk

all export::	FORCE
	@for i in $(UNIXDIRLIST); do \
		echo "  cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) export"; \
		( cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) export ); \
	done

libs install::	FORCE
	@for i in $(UNIXDIRLIST); do \
		echo "  cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) install"; \
		( cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) install ); \
	done

clean clobber::	FORCE
	@for i in $(UNIXDIRLIST); do \
		echo "  cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) clean"; \
		( cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) clean ); \
	done

realclean clobber_all::	FORCE
	@for i in $(UNIXDIRLIST); do \
		echo "  cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) realclean"; \
		( cd $$i; $(MAKE) -f Makefile.client $(MFLAGS) realclean ); \
	done

FORCE: