blob: 1ac088b3bd9427d58222cd6cf5a140e4a6ebc980 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#----------------------------------------------------------------------------
# $Id$
#
# Nested directory targets makefile definitions
#----------------------------------------------------------------------------
$(TARGETS_NESTED):
@for dir in $(DIRS) ;\
do \
(cd $$dir ; \
echo "" ; \
echo " ========> Making $(@:.nested=) $(MAKEFLAGS): `pwd`"; \
$(MAKE) $(@:.nested=) MAKEFLAGS=$(MAKEFLAGS) ; \
echo "<======== End $(@:.nested=): `pwd`") ; \
done
|