Subject: | recursive make not handled |
Date: | Mon, 22 Jul 2013 13:07:32 -0400 |
To: | bug-Makefile-GraphViz [...] rt.cpan.org |
From: | Manuel Mendez <mmendez534 [...] gmail.com> |
I have the following structure
Makefile:
all: platform_all
platform/platform.mk
platform_all: ... boot_all ...
platform/boot/boot.mk
boot_all: uboot_all
uboot_all:
$(MAKE) -C $(UBOOTDIR) u-boot
with all variables setup, and .mk files included correctly. `makesimple`
errors with
`makesimple all`
make[1]: *** No rule to make target `u-boot'. Stop.
makesimple: *** [uboot_all] Error 2
Is this an known limitation?