bump product version to 4.1.6.2
[LibreOffice.git] / android / CustomTarget_lo4android.mk
blob651c435ff385b35d1a6e7b7ea5c8fd5f431bb130
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/lo4android))
11 lo4android_DIR := $(call gb_CustomTarget_get_workdir,android/experimental/LibreOffice4Android)
13 $(call gb_CustomTarget_get_target,android/lo4android) : \
14 $(lo4android_DIR)/done
16 # We know that CustomTarget_docloader.mk is included before this file
17 # in Module_android.mk, so docloader_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 LibreOffice4Android (this
20 # makefile), DocumentLoader and sdremote. We don't want one Ant to be
21 # cleaning out one place while another is building stuff that depends
22 # on it. Yeah, this sucks
24 $(lo4android_DIR)/done : $(docloader_DIR)/done
25 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),MAK,2)
26 cd $(SRCDIR)/android/experimental/LibreOffice4Android && $(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/LibreOffice4Android/bin/*-debug.apk $(SRCDIR)/instsetoo_native/$(INPATH)/bin; \
34 $(call gb_CustomTarget_get_clean_target,android/lo4android) :
35 $(call gb_Output_announce,$(subst $(WORKDIR)/Clean/,,$@),$(false),MAK,2)
36 cd $(SRCDIR)/android/experimental/LibreOffice4Android && $(MAKE) clean
38 # vim: set noet sw=4 ts=4: