1# Makefile to build the Windows SDK under linux.
2#
3# This file is included by build/core/Makefile when a PRODUCT-sdk-win_sdk build
4# is requested.
5#
6# Summary of operations:
7# - create a regular Linux SDK
8# - build a few Windows tools
9# - mirror the linux SDK directory and patch it with the Windows tools
10#
11# This way we avoid the headache of building a full SDK in MinGW mode, which is
12# made complicated by the fact the build system does not support cross-compilation.
13
14# We can only use this under Linux with the mingw32 package installed.
15ifneq ($(shell uname),Linux)
16$(error Linux is required to create a Windows SDK)
17endif
18ifeq ($(strip $(shell which i586-mingw32msvc-gcc 2>/dev/null)),)
19$(error MinGW is required to build a Windows SDK. Please 'apt-get install mingw32')
20endif
21ifeq ($(strip $(shell which unix2dos todos 2>/dev/null)),)
22$(error Need a unix2dos command. Please 'apt-get install tofrodos')
23endif
24
25# Define WIN_SDK_TARGETS (the list of targets located in topdir/sdk)
26# and the WIN_SDK_BUILD_PREREQ (the list of build prerequisites)
27# that are tools-dependent and not platform-dependent.
28include $(TOPDIR)sdk/build/windows_sdk_tools.mk
29
30# This is the list of targets that we want to generate as
31# Windows executables. All the targets specified here are located in
32# the topdir/development directory and are somehow platform-dependent.
33WIN_TARGETS := \
34	aapt adb aidl \
35	bcc_compat \
36	etc1tool \
37	dexdump dmtracedump \
38	fastboot \
39	hprof-conv \
40	llvm-rs-cc \
41	prebuilt \
42	sqlite3 \
43	zipalign \
44	$(WIN_SDK_TARGETS)
45
46# This is the list of *Linux* build tools that we need
47# in order to be able to make the WIN_TARGETS. They are
48# build prerequisites.
49WIN_BUILD_PREREQ := \
50	acp \
51	bcc_compat \
52	llvm-rs-cc \
53	$(WIN_SDK_BUILD_PREREQ)
54
55
56# MAIN_SDK_NAME/DIR is set in build/core/Makefile
57WIN_SDK_NAME := $(subst $(HOST_OS)-$(HOST_ARCH),windows,$(MAIN_SDK_NAME))
58WIN_SDK_DIR  := $(subst $(HOST_OS)-$(HOST_ARCH),windows,$(MAIN_SDK_DIR))
59WIN_SDK_ZIP  := $(WIN_SDK_DIR)/$(WIN_SDK_NAME).zip
60
61$(call dist-for-goals, win_sdk, $(WIN_SDK_ZIP))
62
63.PHONY: win_sdk winsdk-tools
64
65define winsdk-banner
66$(info )
67$(info ====== [Windows SDK] $1 ======)
68$(info )
69endef
70
71define winsdk-info
72$(info MAIN_SDK_NAME: $(MAIN_SDK_NAME))
73$(info WIN_SDK_NAME : $(WIN_SDK_NAME))
74$(info WIN_SDK_DIR  : $(WIN_SDK_DIR))
75$(info WIN_SDK_ZIP  : $(WIN_SDK_ZIP))
76endef
77
78win_sdk: $(WIN_SDK_ZIP)
79	$(call winsdk-banner,Done)
80
81winsdk-tools: $(WIN_BUILD_PREREQ)
82	$(call winsdk-banner,Build Windows Tools)
83	$(hide) USE_MINGW=1 USE_CCACHE="" $(MAKE) PRODUCT-$(TARGET_PRODUCT)-$(strip $(WIN_TARGETS)) $(if $(hide),,showcommands)
84
85$(WIN_SDK_ZIP): winsdk-tools sdk
86	$(call winsdk-banner,Build $(WIN_SDK_NAME))
87	$(call winsdk-info)
88	$(hide) rm -rf $(WIN_SDK_DIR)
89	$(hide) mkdir -p $(WIN_SDK_DIR)
90	$(hide) cp -rf $(MAIN_SDK_DIR)/$(MAIN_SDK_NAME) $(WIN_SDK_DIR)/$(WIN_SDK_NAME)
91	$(hide) USB_DRIVER_HOOK=$(USB_DRIVER_HOOK) \
92		PLATFORM_VERSION=$(PLATFORM_VERSION) \
93		$(TOPDIR)development/build/tools/patch_windows_sdk.sh $(subst @,-q,$(hide)) \
94		$(WIN_SDK_DIR)/$(WIN_SDK_NAME) $(OUT_DIR) $(TOPDIR)
95	$(hide) PLATFORM_VERSION=$(PLATFORM_VERSION) \
96		$(TOPDIR)sdk/build/patch_windows_sdk.sh $(subst @,-q,$(hide)) \
97		$(WIN_SDK_DIR)/$(WIN_SDK_NAME) $(OUT_DIR) $(TOPDIR)
98	$(hide) ( \
99		cd $(WIN_SDK_DIR) && \
100		rm -f $(WIN_SDK_NAME).zip && \
101		zip -rq $(subst @,-q,$(hide)) $(WIN_SDK_NAME).zip $(WIN_SDK_NAME) \
102		)
103	@echo "Windows SDK generated at $(WIN_SDK_ZIP)"
104