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 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 $(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
28 $(call gb_CustomTarget_get_clean_target
,android
/desktop
) :
29 $(call gb_Output_announce
,$(subst $(WORKDIR
)/Clean
/,,$@
),$(false
),MAK
,2)
30 cd
$(SRCDIR
)/android
/experimental
/desktop
&& $(MAKE
) clean
32 # vim: set noet sw=4 ts=4: