From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jerone Young Subject: Re: [PATCH][RESUBMIT] tools top level makefile cleanup Date: Fri, 25 Mar 2005 12:58:20 -0600 Message-ID: <1111777100.7590.14.camel@thinkpad> References: <1111770437.7590.8.camel@thinkpad> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-hDCd5Ou4vaqQSMhiv6Ne" In-Reply-To: Sender: xen-devel-admin@lists.sourceforge.net Errors-To: xen-devel-admin@lists.sourceforge.net List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , List-Archive: To: Adam Heath Cc: xen-devel List-Id: xen-devel@lists.xenproject.org --=-hDCd5Ou4vaqQSMhiv6Ne Content-Type: text/plain Content-Transfer-Encoding: 7bit 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) --=-hDCd5Ou4vaqQSMhiv6Ne Content-Disposition: attachment; filename=tools_clean_makefile.patch Content-Type: text/x-patch; name=tools_clean_makefile.patch; charset=utf-8 Content-Transfer-Encoding: 7bit --- 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 --=-hDCd5Ou4vaqQSMhiv6Ne-- ------------------------------------------------------- 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