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