blob: 040ff44c8cce621846cb47a33b96bd6def409011 [file] [log] [blame]
# Copyright 2012 The Android Open Source Project
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := monitor
LOCAL_MODULE_CLASS := EXECUTABLES
LOCAL_MODULE_TAGS := optional
LOCAL_IS_HOST_MODULE := true
include $(BUILD_SYSTEM)/base_rules.mk
RCP_MONITOR_DIR := $(TOPDIR)out/host/eclipse/rcp/build/I.RcpBuild
define mk-rcp-monitor-atree-file
srczip=$(RCP_MONITOR_DIR)/RcpBuild-$(1).$(2).zip && \
dstdir=$(HOST_OUT)/eclipse/monitor-$(1).$(2) && \
rm -rf $(V) $$dstdir && \
mkdir -p $$dstdir && \
unzip -q $$srczip -d $$dstdir
endef
# The RCP monitor. It is referenced by build/target/products/sdk.mk
$(LOCAL_BUILT_MODULE) : $(TOPDIR)sdk/monitor/monitor \
$(TOPDIR)sdk/monitor/build.xml \
$(TOPDIR)sdk/monitor/build.properties \
$(shell $(TOPDIR)sdk/eclipse/scripts/create_all_symlinks.sh -d)
@mkdir -p $(dir $@)
$(hide)$(TOPDIR)sdk/eclipse/scripts/create_all_symlinks.sh -c
$(hide)cd $(TOPDIR)sdk/monitor && \
java -jar ../../external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher_1.1.0.v20100507.jar \
org.eclipse.equinox.launcher.Main \
-application org.eclipse.ant.core.antRunner \
-configuration ../../out/host/eclipse/rcp/build/configuration \
-DbuildFor=$(HOST_OS)
$(hide)$(ACP) -fpt $(V) $(TOPDIR)sdk/monitor/monitor $@
$(hide)if [[ $(HOST_OS) == "linux" ]]; then \
$(call mk-rcp-monitor-atree-file,linux.gtk,x86) ; \
$(call mk-rcp-monitor-atree-file,linux.gtk,x86_64) ; \
fi
$(hide)if [[ $(HOST_OS) == "darwin" ]]; then \
$(call mk-rcp-monitor-atree-file,macosx.cocoa,x86_64) ; \
fi
$(hide)if [[ $(HOST_OS) == "windows" ]]; then \
$(call mk-rcp-monitor-atree-file,win32.win32,x86) ; \
$(call mk-rcp-monitor-atree-file,win32.win32,x86_64) ; \
fi