summaryrefslogtreecommitdiff
path: root/accessibility/bridge
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2012-03-28 21:37:06 +0200
committerMatúš Kukan <matus.kukan@gmail.com>2012-03-31 22:49:30 +0200
commit058723356da9988a5d8c3b9c8b693728c515d022 (patch)
tree09247f0362ca5469710d5f7a907949344a2fb187 /accessibility/bridge
parent7b3f37f885a46e855f8cb16a4106e9c1fdd5c4fe (diff)
accessibility: use CustomTarget makefiles
Diffstat (limited to 'accessibility/bridge')
-rw-r--r--accessibility/bridge/Makefile52
-rw-r--r--accessibility/bridge/source/java/Makefile43
2 files changed, 0 insertions, 95 deletions
diff --git a/accessibility/bridge/Makefile b/accessibility/bridge/Makefile
deleted file mode 100644
index 9ed435aa7135..000000000000
--- a/accessibility/bridge/Makefile
+++ /dev/null
@@ -1,52 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License or as specified alternatively below. You may obtain a copy of
-# the License at http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# Major Contributor(s):
-# Copyright (C) 2011 Red Hat, Inc., David Tardon <dtardon@redhat.com>
-# (initial developer)
-#
-# All Rights Reserved.
-#
-# For minor contributions see the git repository.
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
-# instead of those above.
-
-gb_PARTIALBUILD := T
-
-ifeq ($(PRODUCT),)
-DEBUGSWITCH := true
-PRODUCTSWITCH := false
-else
-DEBUGSWITCH := false
-PRODUCTSWITCH := true
-endif
-
-org/openoffice/java/accessibility/Build.java :
- mkdir -p $(dir $@) && (\
- echo package org.openoffice.java.accessibility\; && \
- echo public class Build \{ && \
- echo public static final boolean DEBUG = $(DEBUGSWITCH)\; && \
- echo public static final boolean PRODUCT = $(PRODUCTSWITCH)\; && \
- echo \} \
- ) > $@
-
-.DEFAULT_GOAL := all
-.PHONY : all
-all : \
- org/openoffice/java/accessibility/Build.java
-
-# vim: set ts=4 sw=4 et:
diff --git a/accessibility/bridge/source/java/Makefile b/accessibility/bridge/source/java/Makefile
deleted file mode 100644
index b9d9e33a4d1e..000000000000
--- a/accessibility/bridge/source/java/Makefile
+++ /dev/null
@@ -1,43 +0,0 @@
-# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
-# Version: MPL 1.1 / GPLv3+ / LGPLv3+
-#
-# The contents of this file are subject to the Mozilla Public License Version
-# 1.1 (the "License"); you may not use this file except in compliance with
-# the License or as specified alternatively below. You may obtain a copy of
-# the License at http://www.mozilla.org/MPL/
-#
-# Software distributed under the License is distributed on an "AS IS" basis,
-# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
-# for the specific language governing rights and limitations under the
-# License.
-#
-# Major Contributor(s):
-# Copyright (C) 2011 Red Hat, Inc., David Tardon <dtardon@redhat.com>
-# (initial developer)
-#
-# All Rights Reserved.
-#
-# For minor contributions see the git repository.
-#
-# Alternatively, the contents of this file may be used under the terms of
-# either the GNU General Public License Version 3 or later (the "GPLv3+"), or
-# the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
-# in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
-# instead of those above.
-
-gb_PARTIALBUILD := T
-include $(GBUILDDIR)/gbuild.mk
-
-TARGETDIR := $(WORKDIR)/CustomTarget/accessibility/bridge/inc
-
-$(TARGETDIR)/WindowsAccessBridgeAdapter.h :
- mkdir -p $(dir $@) && \
- cd $(call gb_JavaClassSet_get_classdir,$(call gb_Jar_get_classsetname,java_uno_accessbridge)) && \
- javah -classpath . -o $(call gb_Helper_convert_native,$@) org.openoffice.accessibility.WindowsAccessBridgeAdapter
-
-.DEFAULT_GOAL := all
-.PHONY : all
-all : \
- $(TARGETDIR)/WindowsAccessBridgeAdapter.h
-
-# vim: set ts=4 sw=4 et: