bump product version to 4.1.6.2
[LibreOffice.git] / android / CustomTarget_android_desktop.mk
bloba1e12d74c4c329a2aa9882c712955d59d4c6fe94
1 # -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
3 # This file is part of the LibreOffice project.
5 # This Source Code Form is subject to the terms of the Mozilla Public
6 # License, v. 2.0. If a copy of the MPL was not distributed with this
7 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 $(eval $(call gb_CustomTarget_CustomTarget,android/desktop))
11 android_desktop_DIR := $(call gb_CustomTarget_get_workdir,android/experimental/Desktop)
13 $(call gb_CustomTarget_get_target,android/desktop) : \
14 $(android_desktop_DIR)/done
16 # We know that CustomTarget_lo4android.mk is included before this file
17 # in Module_android.mk, so lo4android_DIR is defined. We want that to
18 # be built completely first, so that we can serialize Ant access to
19 # Bootstrap and abs-lib, which are used by Desktop (this makefile),
20 # LibreOffice4Android, DocumentLoader and sdremote. We don't want one
21 # Ant to be cleaning out one place while another is building stuff
22 # that depends on it. Yeah, this sucks
24 $(android_desktop_DIR)/done : $(lo4android_DIR)/done
25 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),MAK,2)
26 cd $(SRCDIR)/android/experimental/desktop && $(MAKE) all
27 # If SRCDIR==BUILDDIR, copy to $(SRCDIR)/instsetoo_native/$(INPATH)/bin as that is where the tinderbox build script
28 # still looks for the .apk, and we want fresh daily builds to be uploaded.
29 if test $(SRCDIR) = $(BUILDDIR); then \
30 mkdir -p $(SRCDIR)/instsetoo_native/$(INPATH)/bin; \
31 cp $(SRCDIR)/android/experimental/desktop/bin/*-debug.apk $(SRCDIR)/instsetoo_native/$(INPATH)/bin; \
34 $(call gb_CustomTarget_get_clean_target,android/desktop) :
35 $(call gb_Output_announce,$(subst $(WORKDIR)/Clean/,,$@),$(false),MAK,2)
36 cd $(SRCDIR)/android/experimental/desktop && $(MAKE) clean
38 # vim: set noet sw=4 ts=4: