1999-08-30 04:08:00 -04:00
|
|
|
# $OpenLDAP$
|
2005-01-21 14:38:13 -05:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
|
##
|
2024-03-26 15:45:07 -04:00
|
|
|
## Copyright 1998-2024 The OpenLDAP Foundation.
|
2003-11-25 21:58:56 -05:00
|
|
|
## All rights reserved.
|
1998-10-24 21:41:42 -04:00
|
|
|
##
|
2003-11-25 21:58:56 -05:00
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
|
## Public License.
|
1998-10-24 21:41:42 -04:00
|
|
|
##
|
2003-11-25 21:58:56 -05:00
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
|
|
|
|
##---------------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# Makes subdirectories
|
|
|
|
|
#
|
1998-10-24 21:41:42 -04:00
|
|
|
|
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"; \
|
2022-01-25 10:38:46 -05:00
|
|
|
( cd $$i && $(MAKE) 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"; \
|
2022-01-25 10:38:46 -05:00
|
|
|
( cd $$i && $(MAKE) 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"; \
|
2022-01-25 10:38:46 -05:00
|
|
|
( cd $$i && $(MAKE) 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"; \
|
2022-01-25 10:38:46 -05:00
|
|
|
( cd $$i && $(MAKE) 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"; \
|
2022-01-25 10:38:46 -05:00
|
|
|
( cd $$i && $(MAKE) 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
|