1# 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 := \ 7 avdlauncher \ 8 emulator \ 9 emulator-arm \ 10 emulator-x86 \ 11 mksdcard \ 12 sdklauncher 13 14# 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 23