blob: ee4ca7ff826b402ecca2203231b0ef5fd31510fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Makefile to build the Windows SDK Tools under linux.
#
# This makefile is included by development/build/tools/windows_sdk.mk
# to device which tools we want to build from the sdk.git project.
# Define the list of tool-dependent modules to build for the Windows SDK.
# All these will be build using USE_MINGW=1
WIN_SDK_TARGETS := \
avdlauncher \
emulator \
emulator-arm \
emulator-x86 \
emulator-mips \
find_java \
find_lock \
mksdcard \
monitor \
sdklauncher
# Add OpenGLES emulation host libraries if needed.
ifeq (true,$(BUILD_EMULATOR_OPENGL))
WIN_SDK_TARGETS += \
libOpenglRender \
libGLES_CM_translator \
libGLES_V2_translator \
libEGL_translator
endif
# Define the list of tool-dependent modules requisites needed
# for the Windows SDK. These will be built using HOST_OS=linux.
WIN_SDK_BUILD_PREREQ := \
monitor
|