openldap/build/dir.mk
Howard Chu 61d0ffd135 Minor changes to support parallel make: Eliminate for-loops for building
subdirectories; add explicit dependencies for subdirs that need them.
1999-07-24 08:25:48 +00:00

17 lines
580 B
Makefile

## Copyright 1998,1999 The OpenLDAP Foundation
## COPYING RESTRICTIONS APPLY. See COPYRIGHT File in top level directory
## of this package for details.
##---------------------------------------------------------------------------
##
## Makes subdirectories
##
all-common install-common clean-common veryclean-common depend-common: FORCE
@T=`echo $@ | cut -d- -f1`; echo "Making $$T in `$(PWD)`"; \
$(MAKE) $(MFLAGS) $(SUBDIRS) TARG=$$T
$(SUBDIRS): FORCE
@echo " Entering subdirectory $@"; cd $@; $(MAKE) $(MFLAGS) $(TARG); \
echo ""
Makefile: $(top_srcdir)/build/dir.mk