summaryrefslogtreecommitdiff
path: root/include/makeinclude/rules.nested.GNU
blob: 04774223b381d29196167a74d737337cb8dae214 (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