blob: a82b2c8a812528f1231cc5fbbd40eb5ded68728d [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 Mollfe21e0b2010-11-11 16:03:07 -080011 mksdcard \
Raphael22fd3c12011-12-02 21:58:23 -080012 sdklauncher
Raphael Mollfe21e0b2010-11-11 16:03:07 -080013
David 'Digit' Turner94c077f2011-08-29 21:49:13 +020014# Add OpenGLES emulation host libraries if needed.
15ifeq (true,$(BUILD_EMULATOR_OPENGL))
16WIN_SDK_TARGETS += \
17 libOpenglRender \
18 libGLES_CM_translator \
19 libGLES_V2_translator \
20 libEGL_translator
21endif
22