aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.android
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.android')
-rw-r--r--Makefile.android7
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 = \