1999-08-30 16:08:00 +08:00
|
|
|
# $OpenLDAP$
|
2003-01-04 04:20:47 +08:00
|
|
|
## Copyright 1998-2003 The OpenLDAP Foundation
|
1998-12-29 03:58:57 +08:00
|
|
|
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
|
|
|
## of this package for details.
|
1998-10-25 09:41:42 +08:00
|
|
|
##---------------------------------------------------------------------------
|
|
|
|
##
|
|
|
|
## Makes subdirectories
|
|
|
|
##
|
|
|
|
|
1999-08-16 06:09:29 +08:00
|
|
|
|
|
|
|
all-common: FORCE
|
|
|
|
@echo "Making all in `$(PWD)`"
|
|
|
|
@for i in $(SUBDIRS) $(ALLDIRS); do \
|
|
|
|
echo " Entering subdirectory $$i"; \
|
|
|
|
( cd $$i; $(MAKE) $(MFLAGS) all ); \
|
2000-06-10 01:42:40 +08:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-16 06:09:29 +08:00
|
|
|
echo " "; \
|
|
|
|
done
|
|
|
|
|
|
|
|
install-common: FORCE
|
|
|
|
@echo "Making install in `$(PWD)`"
|
|
|
|
@for i in $(SUBDIRS) $(INSTALLDIRS); do \
|
|
|
|
echo " Entering subdirectory $$i"; \
|
|
|
|
( cd $$i; $(MAKE) $(MFLAGS) install ); \
|
2000-06-10 01:42:40 +08:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-16 06:09:29 +08:00
|
|
|
echo " "; \
|
|
|
|
done
|
|
|
|
|
|
|
|
clean-common: FORCE
|
|
|
|
@echo "Making clean in `$(PWD)`"
|
|
|
|
@for i in $(SUBDIRS) $(CLEANDIRS); do \
|
|
|
|
echo " Entering subdirectory $$i"; \
|
|
|
|
( cd $$i; $(MAKE) $(MFLAGS) clean ); \
|
2000-06-10 01:42:40 +08:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-16 06:09:29 +08:00
|
|
|
echo " "; \
|
|
|
|
done
|
|
|
|
|
|
|
|
veryclean-common: FORCE
|
|
|
|
@echo "Making veryclean in `$(PWD)`"
|
|
|
|
@for i in $(SUBDIRS) $(CLEANDIRS); do \
|
|
|
|
echo " Entering subdirectory $$i"; \
|
|
|
|
( cd $$i; $(MAKE) $(MFLAGS) veryclean ); \
|
2000-06-10 01:42:40 +08:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-16 06:09:29 +08:00
|
|
|
echo " "; \
|
|
|
|
done
|
|
|
|
|
|
|
|
depend-common: FORCE
|
|
|
|
@echo "Making depend in `$(PWD)`"
|
|
|
|
@for i in $(SUBDIRS) $(DEPENDDIRS); do \
|
|
|
|
echo " Entering subdirectory $$i"; \
|
|
|
|
( cd $$i; $(MAKE) $(MFLAGS) depend ); \
|
2000-06-10 01:42:40 +08:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-16 06:09:29 +08:00
|
|
|
echo " "; \
|
1999-07-25 05:40:58 +08:00
|
|
|
done
|
1998-10-25 09:41:42 +08:00
|
|
|
|
|
|
|
Makefile: $(top_srcdir)/build/dir.mk
|