blob: 1373613746218f10e49528cdf60abd4ff1af1bb6 [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
6WIN_SDK_TARGETS := \
Raphael Moll1e0661b2011-09-17 11:25:36 -07007 avdlauncher \
Raphael Mollfe21e0b2010-11-11 16:03:07 -08008 emulator \
Raphael Moll19b851d2011-05-04 14:32:41 -07009 emulator-arm \
10 emulator-x86 \
Raphael Moll07350252012-01-27 14:00:22 -080011 find_java \
Raphael Mollbec2e272012-02-06 20:57:56 -080012 find_lock \
Raphael Mollfe21e0b2010-11-11 16:03:07 -080013 mksdcard \
Raphael22fd3c12011-12-02 21:58:23 -080014 sdklauncher
Raphael Mollfe21e0b2010-11-11 16:03:07 -080015
David 'Digit' Turner94c077f2011-08-29 21:49:13 +020016# Add OpenGLES emulation host libraries if needed.
17ifeq (true,$(BUILD_EMULATOR_OPENGL))
18WIN_SDK_TARGETS += \
19 libOpenglRender \
20 libGLES_CM_translator \
21 libGLES_V2_translator \
22 libEGL_translator
23endif
24