diff options
author | David 'Digit' Turner <digit@android.com> | 2011-05-09 15:59:28 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@android.com> | 2011-06-01 17:08:17 +0200 |
commit | 088edf82b3d34409ed9d9fd09ec1f7e9b933304f (patch) | |
tree | b5515cf92d243d3453062a5bc975a494142442d3 /Makefile.android | |
parent | 795bb19daea966401df15bbf23c57b98848eec23 (diff) | |
download | external_qemu-088edf82b3d34409ed9d9fd09ec1f7e9b933304f.zip external_qemu-088edf82b3d34409ed9d9fd09ec1f7e9b933304f.tar.gz external_qemu-088edf82b3d34409ed9d9fd09ec1f7e9b933304f.tar.bz2 |
os-posix.c + os-win32.c and dependencies
+ Generate qemu-options.def instead of qemu-options.h
Change-Id: I043e6b0c1c58e5cc2e96d05465f39b42f9054b5a
Diffstat (limited to 'Makefile.android')
-rw-r--r-- | Makefile.android | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.android b/Makefile.android index efc6fc3..ed8a965 100644 --- a/Makefile.android +++ b/Makefile.android @@ -152,11 +152,14 @@ start-emulator-library = \ # Used with start-emulator-library end-emulator-library = \ - $(eval include $(BUILD_HOST_STATIC_LIBRARY)) + $(eval include $(BUILD_HOST_STATIC_LIBRARY)) \ + $(eval EMULATOR_MODULE_TYPE := HOST_STATIC_LIBRARY) # A variant of start-emulator-library to start the definition of a host # program instead. Use with end-emulator-program -start-emulator-program = $(call start-emulator-library,$1) +start-emulator-program = \ + $(call start-emulator-library,$1) \ + $(eval EMULATOR_MODULE_TYPE := HOST_EXECUTABLES) # A varient of end-emulator-library for host programs instead end-emulator-program = \ |