1999-08-30 04:08:00 -04:00
|
|
|
# $OpenLDAP$
|
2002-01-04 16:17:25 -05:00
|
|
|
## Copyright 1998-2002 The OpenLDAP Foundation
|
1998-12-28 14:58:57 -05:00
|
|
|
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
|
|
|
|
|
## of this package for details.
|
1998-10-24 21:41:42 -04:00
|
|
|
##---------------------------------------------------------------------------
|
|
|
|
|
##
|
|
|
|
|
## Makes subdirectories
|
|
|
|
|
##
|
|
|
|
|
|
1999-08-15 18:09:29 -04: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-09 13:42:40 -04:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-15 18:09:29 -04: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-09 13:42:40 -04:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-15 18:09:29 -04: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-09 13:42:40 -04:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-15 18:09:29 -04: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-09 13:42:40 -04:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-15 18:09:29 -04: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-09 13:42:40 -04:00
|
|
|
if test $$? != 0 ; then exit 1; fi ; \
|
1999-08-15 18:09:29 -04:00
|
|
|
echo " "; \
|
1999-07-24 17:40:58 -04:00
|
|
|
done
|
1998-10-24 21:41:42 -04:00
|
|
|
|
|
|
|
|
Makefile: $(top_srcdir)/build/dir.mk
|