summaryrefslogtreecommitdiffstats
path: root/ldap/libraries/Makefile.client
blob: 08d5206e47840cc2a0672360fba15d4b7192c6b2 (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 (C) 2001 Sun Microsystems, Inc. Used by permission.
# Copyright (C) 2005 Red Hat, Inc.
# 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: