qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [5699] Move the things that aren't target specific to libqemu_common.a.
@ 2008-11-11 21:20 Anthony Liguori
  0 siblings, 0 replies; only message in thread
From: Anthony Liguori @ 2008-11-11 21:20 UTC (permalink / raw)
  To: qemu-devel

Revision: 5699
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5699
Author:   aliguori
Date:     2008-11-11 21:20:14 +0000 (Tue, 11 Nov 2008)

Log Message:
-----------
Move the things that aren't target specific to libqemu_common.a.

This will improve the build time.

Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>

Modified Paths:
--------------
    trunk/Makefile
    trunk/Makefile.target
    trunk/net.c

Modified: trunk/Makefile
===================================================================
--- trunk/Makefile	2008-11-11 20:57:30 UTC (rev 5698)
+++ trunk/Makefile	2008-11-11 21:20:14 UTC (rev 5699)
@@ -78,6 +78,8 @@
 OBJS+=usb-serial.o usb-net.o
 OBJS+=sd.o ssi-sd.o
 OBJS+=bt.o bt-host.o bt-vhci.o bt-l2cap.o bt-sdp.o bt-hci.o bt-hid.o usb-bt.o
+OBJS+=buffered_file.o migration.o migration-tcp.o net.o qemu-sockets.o
+OBJS+=qemu-char.o aio.o net-checksum.o
 
 ifdef CONFIG_BRLAPI
 OBJS+= baum.o
@@ -86,6 +88,8 @@
 
 ifdef CONFIG_WIN32
 OBJS+=tap-win32.o
+else
+OBJS+=migration-exec.o
 endif
 
 AUDIO_OBJS = audio.o noaudio.o wavaudio.o mixeng.o

Modified: trunk/Makefile.target
===================================================================
--- trunk/Makefile.target	2008-11-11 20:57:30 UTC (rev 5698)
+++ trunk/Makefile.target	2008-11-11 21:20:14 UTC (rev 5699)
@@ -587,16 +587,15 @@
 # System emulator target
 ifndef CONFIG_USER_ONLY
 
-OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o net-checksum.o
-OBJS+=fw_cfg.o aio.o buffered_file.o migration.o migration-tcp.o qemu-char.o
-OBJS+=net.o qemu-sockets.o
+OBJS=vl.o osdep.o monitor.o pci.o loader.o isa_mmio.o machine.o
+OBJS+=fw_cfg.o
 ifdef CONFIG_KVM
 OBJS+=kvm.o kvm-all.o
 endif
 ifdef CONFIG_WIN32
 OBJS+=block-raw-win32.o
 else
-OBJS+=block-raw-posix.o migration-exec.o
+OBJS+=block-raw-posix.o
 endif
 
 LIBS+=-lz

Modified: trunk/net.c
===================================================================
--- trunk/net.c	2008-11-11 20:57:30 UTC (rev 5698)
+++ trunk/net.c	2008-11-11 21:20:14 UTC (rev 5699)
@@ -21,24 +21,13 @@
  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  * THE SOFTWARE.
  */
-#include "hw/hw.h"
-#include "hw/boards.h"
-#include "hw/usb.h"
-#include "hw/pcmcia.h"
-#include "hw/pc.h"
-#include "hw/audiodev.h"
-#include "hw/isa.h"
-#include "hw/baum.h"
-#include "hw/bt.h"
+#include "qemu-common.h"
 #include "net.h"
 #include "console.h"
 #include "sysemu.h"
-#include "gdbstub.h"
 #include "qemu-timer.h"
 #include "qemu-char.h"
-#include "block.h"
 #include "audio/audio.h"
-#include "migration.h"
 
 #include <unistd.h>
 #include <fcntl.h>

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-11-11 21:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-11 21:20 [Qemu-devel] [5699] Move the things that aren't target specific to libqemu_common.a Anthony Liguori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).