GPU-Calc: remove Alloc_Host_Ptr for clmem of NAN vector
[LibreOffice.git] / accessibility / CustomTarget_bridge.mk
blob85f278eb1614dd15581efcdb2a5d171fc6a2fb8a
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/.
10 $(eval $(call gb_CustomTarget_CustomTarget,accessibility/bridge))
12 $(call gb_CustomTarget_get_target,accessibility/bridge) : \
13 $(call gb_CustomTarget_get_workdir,accessibility/bridge)/org/openoffice/java/accessibility/Build.java
15 ifeq ($(ENABLE_DBGUTIL),TRUE)
16 accessibility_DEBUG := true
17 accessibility_PRODUCT := false
18 else
19 accessibility_DEBUG := false
20 accessibility_PRODUCT := true
21 endif
23 $(call gb_CustomTarget_get_workdir,accessibility/bridge)/org/openoffice/java/accessibility/Build.java :
24 $(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),ECH,1)
25 mkdir -p $(dir $@) && (\
26 echo package org.openoffice.java.accessibility\; && \
27 echo public class Build \{ && \
28 echo public static final boolean DEBUG = $(accessibility_DEBUG)\; && \
29 echo public static final boolean PRODUCT = $(accessibility_PRODUCT)\; && \
30 echo \} \
31 ) > $@
33 # vim: set ts=4 sw=4 et: