From: Jerone Young <jyoung5@us.ibm.com>
To: Adam Heath <doogie@brainfood.com>
Cc: xen-devel <xen-devel@lists.sourceforge.net>
Subject: Re: [PATCH][RESUBMIT] tools top level makefile cleanup
Date: Fri, 25 Mar 2005 12:58:20 -0600 [thread overview]
Message-ID: <1111777100.7590.14.camel@thinkpad> (raw)
In-Reply-To: <Pine.LNX.4.58.0503251238060.1720@gradall.private.brainfood.com>
[-- Attachment #1: Type: text/plain, Size: 869 bytes --]
On Fri, 2005-03-25 at 12:38 -0600, Adam Heath wrote:
> Even here, the source file is missing the tab. Did your editor barf?
Actually it was Evolution (my mail client) that did this I've attached
the original patch. I guess it removed the tabs when I inserted the
patch into the email.
>
>
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/xen-devel
>
--
Jerone Young
IBM Linux Technology Center
jyoung5@us.ibm.com
512-838-1157 (T/L: 678-1157)
[-- Attachment #2: tools_clean_makefile.patch --]
[-- Type: text/x-patch, Size: 1542 bytes --]
--- xen-unstable/tools/Makefile 2005-03-24 22:16:33.000000000 -0600
+++ xen-unstable.work/tools/Makefile 2005-03-25 10:59:12.000000000 -0600
@@ -1,37 +1,36 @@
+XEN_ROOT = ../
+include $(XEN_ROOT)/tools/Rules.mk
-all:
- $(MAKE) -C check
- $(MAKE) -C libxutil
- $(MAKE) -C libxc
- $(MAKE) -C misc
- $(MAKE) -C examples
- $(MAKE) -C xentrace
- $(MAKE) -C python
- $(MAKE) -C xfrd
- $(MAKE) -C xcs
- $(MAKE) -C ioemu
+SUBDIRS :=
+SUBDIRS += libxutil
+SUBDIRS += libxc
+SUBDIRS += misc
+SUBDIRS += examples
+SUBDIRS += xentrace
+SUBDIRS += python
+SUBDIRS += xfrd
+SUBDIRS += xcs
+SUBDIRS += ioemu
+
+.PHONY: all install clean check check_clean
+
+all: check
+ @for subdir in $(SUBDIRS); do \
+ $(MAKE) -C $$subdir $@ || exit -1; \
+ done
-install:
+install: check
+ @for subdir in $(SUBDIRS); do \
+ $(MAKE) -C $$subdir $@ || exit -1; \
+ done
+
+clean: check_clean
+ @for subdir in $(SUBDIRS); do \
+ $(MAKE) -C $$subdir $@ || exit -1; \
+ done
+
+check:
$(MAKE) -C check
- $(MAKE) -C libxutil install
- $(MAKE) -C libxc install
- $(MAKE) -C misc install
- $(MAKE) -C examples install
- $(MAKE) -C xentrace install
- $(MAKE) -C python install
- $(MAKE) -C xfrd install
- $(MAKE) -C sv install
- $(MAKE) -C xcs install
- $(MAKE) -C ioemu install
-
-clean build:
- $(MAKE) -C check $@
- $(MAKE) -C libxutil $@
- $(MAKE) -C libxc $@
- $(MAKE) -C misc $@
- $(MAKE) -C examples $@
- $(MAKE) -C xentrace $@
- $(MAKE) -C python $@
- $(MAKE) -C xfrd $@
- $(MAKE) -C xcs clean
- $(MAKE) -C ioemu clean
+
+check_clean:
+ $(MAKE) -C check clean
next prev parent reply other threads:[~2005-03-25 18:58 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-03-25 17:07 [PATCH][RESUBMIT] tools top level makefile cleanup Jerone Young
2005-03-25 18:38 ` Adam Heath
2005-03-25 18:51 ` Jerone Young
2005-03-25 19:04 ` Anthony Liguori
2005-03-25 19:12 ` Adam Heath
2005-03-25 18:58 ` Jerone Young [this message]
2005-03-25 20:21 ` Adam Heath
2005-03-25 20:28 ` Jerone Young
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1111777100.7590.14.camel@thinkpad \
--to=jyoung5@us.ibm.com \
--cc=doogie@brainfood.com \
--cc=xen-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.