blob: ee4ca7ff826b402ecca2203231b0ef5fd31510fb [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 \
Duane Sandb0d9e712012-03-12 11:13:08 -070013 emulator-mips \
Raphael Moll07350252012-01-27 14:00:22 -080014 find_java \
Raphael Mollbec2e272012-02-06 20:57:56 -080015 find_lock \
Raphael Mollfe21e0b2010-11-11 16:03:07 -080016 mksdcard \
Raphael Moll5abe8b22012-03-30 15:50:45 -070017 monitor \
Raphael22fd3c12011-12-02 21:58:23 -080018 sdklauncher
Raphael Mollfe21e0b2010-11-11 16:03:07 -080019
Raphael Moll0c0d16b2012-03-23 11:19:44 -070020
David 'Digit' Turner94c077f2011-08-29 21:49:13 +020021# Add OpenGLES emulation host libraries if needed.
22ifeq (true,$(BUILD_EMULATOR_OPENGL))
23WIN_SDK_TARGETS += \
24 libOpenglRender \
25 libGLES_CM_translator \
26 libGLES_V2_translator \
27 libEGL_translator
28endif
29
Raphael Mollf11439a2012-04-23 13:15:18 -070030# Define the list of tool-dependent modules requisites needed
31# for the Windows SDK. These will be built using HOST_OS=linux.
Raphael Moll5abe8b22012-03-30 15:50:45 -070032WIN_SDK_BUILD_PREREQ := \
33 monitor
Raphael Mollf11439a2012-04-23 13:15:18 -070034