openldap/build/dir.mk

19 lines
604 B
Makefile
Raw Normal View History

1998-12-29 03:58:57 +08:00
## Copyright 1998,1999 The OpenLDAP Foundation
## 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
##
all-common install-common clean-common veryclean-common depend-common: FORCE
1999-07-25 05:40:58 +08:00
@t=`echo $@ | cut -d- -f1`; \
echo "Making $$t in `$(PWD)`"; \
for i in $(SUBDIRS); do \
echo " Entering subdirectory $$i to execute:"; \
echo " $(MAKE) $(MFLAGS) $$t"; \
( cd $$i; $(MAKE) $(MFLAGS) $$t ); \
done
1998-10-25 09:41:42 +08:00
Makefile: $(top_srcdir)/build/dir.mk