Home | History | Annotate | Download | only in build
      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 
      6 # Define the list of tool-dependent modules to build for the Windows SDK.
      7 # All these will be build using USE_MINGW=1
      8 WIN_SDK_TARGETS := \
      9 	avdlauncher \
     10 	emulator \
     11 	emulator-arm \
     12 	emulator-x86 \
     13 	emulator-mips \
     14 	find_java \
     15 	find_lock \
     16 	mksdcard \
     17 	monitor \
     18 	sdklauncher
     19 
     20 
     21 # Add OpenGLES emulation host libraries if needed.
     22 ifeq (true,$(BUILD_EMULATOR_OPENGL))
     23 WIN_SDK_TARGETS += \
     24 	libOpenglRender \
     25 	libGLES_CM_translator \
     26 	libGLES_V2_translator \
     27 	libEGL_translator
     28 endif
     29 
     30 # Define the list of tool-dependent modules requisites needed
     31 # for the Windows SDK. These will be built using HOST_OS=linux.
     32 WIN_SDK_BUILD_PREREQ := \
     33 	monitor
     34 
     35