diff options
author | Vladimir Chtchetkine <vchtchetkine@google.com> | 2010-07-09 09:19:37 -0700 |
---|---|---|
committer | Vladimir Chtchetkine <vchtchetkine@google.com> | 2010-07-09 11:35:01 -0700 |
commit | a678138e7412d90ee8240dd80354295e2245c1ad (patch) | |
tree | b7d34cc159821062441ccb2455be558d7c28165d /Makefile.android | |
parent | 45d921a6b0f4626805a3a4870834874be051f6b0 (diff) | |
download | external_qemu-a678138e7412d90ee8240dd80354295e2245c1ad.zip external_qemu-a678138e7412d90ee8240dd80354295e2245c1ad.tar.gz external_qemu-a678138e7412d90ee8240dd80354295e2245c1ad.tar.bz2 |
Shuffle some more files.
Change-Id: I34204a860c58efd938ef338d1e9c9ce18b92aec3
Diffstat (limited to 'Makefile.android')
-rw-r--r-- | Makefile.android | 50 |
1 files changed, 29 insertions, 21 deletions
diff --git a/Makefile.android b/Makefile.android index 1ed3423..74d6fc6 100644 --- a/Makefile.android +++ b/Makefile.android @@ -602,12 +602,22 @@ endif # misc. sources # -CORE_MISC_SOURCES = android/boot-properties.c \ +CORE_MISC_SOURCES = console.c \ + loader.c \ + monitor.c \ + readline.c \ + qemu-char-android.c \ + disas.c \ + arm-dis.c \ + android/boot-properties.c \ android/hw-kmsg.c \ android/hw-lcd.c \ android/gps.c \ android/hw-events.c \ android/hw-control.c \ + android/avd/hw-config.c \ + android/avd/info.c \ + android/utils/ini.c \ ifeq ($(HOST_ARCH),x86) CORE_MISC_SOURCES += i386-dis.c @@ -649,9 +659,24 @@ UI_SOURCES = android/user-config.c \ # lists of source files used by both, emulator UI and emulator core # -UI_AND_CORE_SOURCES = android/keycode-array.c \ +UI_AND_CORE_SOURCES = osdep.c \ + cutils.c \ + sockets.c \ + android/keycode-array.c \ android/charmap.c \ android/hw-qemud.c \ + android/utils/bufprint.c \ + android/utils/debug.c \ + android/utils/path.c \ + android/utils/dirscanner.c \ + android/utils/filelock.c \ + android/utils/misc.c \ + android/utils/reflist.c \ + android/utils/stralloc.c \ + android/utils/system.c \ + android/utils/tempfile.c \ + android/utils/timezone.c \ + android/utils/mapfile.c \ ############################################################################## # now build the emulator itself @@ -720,18 +745,16 @@ endif # include other sources # -VL_SOURCES := vl-android.c osdep.c cutils.c \ - readline.c monitor.c console.c loader.c sockets.c \ +VL_SOURCES := vl-android.c \ aes.c d3des.c \ buffered_file.c \ cbuffer.c \ gdbstub.c \ ioport.c \ - vnc-android.c disas.c arm-dis.c \ + vnc-android.c \ shaper.c charpipe.c loadpng.c \ framebuffer.c \ tcpdump.c \ - qemu-char-android.c \ qemu-malloc.c \ qemu-option.c \ savevm.c \ @@ -760,21 +783,6 @@ VL_SOURCES := vl-android.c osdep.c cutils.c \ android/console.c \ android/hw-sensors.c \ android/main.c \ - android/utils/bufprint.c \ - android/utils/debug.c \ - android/utils/dirscanner.c \ - android/utils/ini.c \ - android/utils/filelock.c \ - android/utils/misc.c \ - android/utils/path.c \ - android/utils/reflist.c \ - android/utils/stralloc.c \ - android/utils/system.c \ - android/utils/tempfile.c \ - android/utils/timezone.c \ - android/utils/mapfile.c \ - android/avd/hw-config.c \ - android/avd/info.c \ ifeq ($(HOST_OS),windows) LOCAL_LDLIBS += -mno-cygwin -mwindows -mconsole |