|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] [PATCH] tools top level makefile cleanup
Hollis Blanchard wrote:
Well, I guess it's not very dissimilar after all.
But I really don't like that for every command to recurse with (e.g. clean),
you must add more hackery to the Makefile. Your snippet has the same problem
(let's add "clean"...), and it seems all the Makefiles have all the issues
discussed in different places.
Is there really no better way to solve this problem?
The following works for me. You need a default rule or else make gets
really confused but the wildcard rule will catch everything else.
SUBDIRS=sub sub1
all:
@for i in $(SUBDIRS); do \
$(MAKE) -C $$i $@; \
done
%:
@for i in $(SUBDIRS); do \
$(MAKE) -C $$i $@; \
done
-------------------------------------------------------
This SF.net email is sponsored by Microsoft Mobile & Embedded DevCon 2005
Attend MEDC 2005 May 9-12 in Vegas. Learn more about the latest Windows
Embedded(r) & Windows Mobile(tm) platforms, applications & content. Register
by 3/29 & save $300 http://ads.osdn.com/?ad_id=6883&alloc_id=15149&op=click
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxxxx
https://lists.sourceforge.net/lists/listinfo/xen-devel
|
|
|
|
|