blob: 37a125cefeff0726b6ef3ab9a756a079efb4aa8f [file] [log] [blame]
Raphael Mollfe21e0b2010-11-11 16:03:07 -08001# Makefile to build the Windows SDK Tools under linux.
2#
3# This makefile is included by development/build/tools/windows_sdk.mk
4# to device which tools we want to build from the sdk.git project.
5
Raphael Mollf11439a2012-04-23 13:15:18 -07006# Define the list of tool-dependent modules to build for the Windows SDK.
7# All these will be build using USE_MINGW=1
Raphael Mollfe21e0b2010-11-11 16:03:07 -08008WIN_SDK_TARGETS := \
Raphael Moll1e0661b2011-09-17 11:25:36 -07009 avdlauncher \
Raphael Mollfe21e0b2010-11-11 16:03:07 -080010 emulator \
Raphael Moll19b851d2011-05-04 14:32:41 -070011 emulator-arm \
12 emulator-x86 \
Raphael Moll07350252012-01-27 14:00:22 -080013 find_java \
Raphael Mollbec2e272012-02-06 20:57:56 -080014 find_lock \
Raphael Mollfe21e0b2010-11-11 16:03:07 -080015 mksdcard \
Raphael Moll5abe8b22012-03-30 15:50:45 -070016 monitor \
Raphael22fd3c12011-12-02 21:58:23 -080017 sdklauncher
Raphael Mollfe21e0b2010-11-11 16:03:07 -080018
Raphael Moll0c0d16b2012-03-23 11:19:44 -070019
David 'Digit' Turner94c077f2011-08-29 21:49:13 +020020# Add OpenGLES emulation host libraries if needed.
21ifeq (true,$(BUILD_EMULATOR_OPENGL))
22WIN_SDK_TARGETS += \
23 libOpenglRender \
24 libGLES_CM_translator \
25 libGLES_V2_translator \
26 libEGL_translator
27endif
28
Raphael Mollf11439a2012-04-23 13:15:18 -070029# Define the list of tool-dependent modules requisites needed
30# for the Windows SDK. These will be built using HOST_OS=linux.
Raphael Moll5abe8b22012-03-30 15:50:45 -070031WIN_SDK_BUILD_PREREQ := \
32 monitor
Raphael Mollf11439a2012-04-23 13:15:18 -070033