WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [xen-unstable] tools: hvmloader: Define $(OBJS) directly

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [xen-unstable] tools: hvmloader: Define $(OBJS) directly instead of via $(SRCS)
From: Xen patchbot-unstable <patchbot@xxxxxxx>
Date: Wed, 13 Apr 2011 01:05:16 +0100
Delivery-date: Tue, 12 Apr 2011 17:07:31 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Ian Campbell <ian.campbell@xxxxxxxxxx>
# Date 1302612225 -3600
# Node ID 560187ccaf95399b53aea5248346f1fc8cffbf7c
# Parent  d237d2e2a47d4caf6d469d7041e62d3bcb2518ce
tools: hvmloader: Define $(OBJS) directly instead of via $(SRCS)

$(SRCS) isn't used for anything else.

Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx>
Acked-by: Keir Fraser <keir@xxxxxxx>
---


diff -r d237d2e2a47d -r 560187ccaf95 tools/firmware/hvmloader/Makefile
--- a/tools/firmware/hvmloader/Makefile Tue Apr 12 13:41:43 2011 +0100
+++ b/tools/firmware/hvmloader/Makefile Tue Apr 12 13:43:45 2011 +0100
@@ -28,13 +28,12 @@
 
 CFLAGS += $(CFLAGS_xeninclude)
 
-SRCS  = hvmloader.c mp_tables.c util.c smbios.c 
-SRCS += 32bitbios_support.c smp.c cacheattr.c xenbus.c
-SRCS += e820.c
+OBJS  = hvmloader.o mp_tables.o util.o smbios.o 
+OBJS += 32bitbios_support.o smp.o cacheattr.o xenbus.o
+OBJS += e820.o
 ifeq ($(debug),y)
-SRCS += tests.c
+OBJS += tests.o
 endif
-OBJS  = $(patsubst %.c,%.o,$(SRCS))
 
 CIRRUSVGA_DEBUG ?= n
 

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [xen-unstable] tools: hvmloader: Define $(OBJS) directly instead of via $(SRCS), Xen patchbot-unstable <=