blob: 997f74209e8813cc3eb82edbf4a2b48f1de1679c [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 \
Duane Sandb0d9e712012-03-12 11:13:08 -070011 emulator-mips \
Raphael Moll07350252012-01-27 14:00:22 -080012 find_java \
Raphael Mollbec2e272012-02-06 20:57:56 -080013 find_lock \
Raphael Mollfe21e0b2010-11-11 16:03:07 -080014 mksdcard \
Raphael22fd3c12011-12-02 21:58:23 -080015 sdklauncher
Raphael Mollfe21e0b2010-11-11 16:03:07 -080016
David 'Digit' Turner94c077f2011-08-29 21:49:13 +020017# Add OpenGLES emulation host libraries if needed.
18ifeq (true,$(BUILD_EMULATOR_OPENGL))
19WIN_SDK_TARGETS += \
20 libOpenglRender \
21 libGLES_CM_translator \
22 libGLES_V2_translator \
23 libEGL_translator
24endif
25