2011-12-23 06:32:50 -06:00
|
|
|
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
|
|
#
|
2013-04-19 15:10:42 -05:00
|
|
|
# This file is part of the LibreOffice project.
|
2011-12-23 06:32:50 -06:00
|
|
|
#
|
2013-04-19 15:10:42 -05:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2011-12-23 06:32:50 -06:00
|
|
|
#
|
|
|
|
|
2012-04-07 01:40:35 -05:00
|
|
|
$(eval $(call gb_CustomTarget_CustomTarget,ridljar/javamaker))
|
2011-12-23 06:32:50 -06:00
|
|
|
|
2012-05-09 16:15:42 -05:00
|
|
|
ridljar_DIR := $(call gb_CustomTarget_get_workdir,ridljar/javamaker)
|
2012-04-05 09:40:01 -05:00
|
|
|
|
2012-05-09 16:15:42 -05:00
|
|
|
$(call gb_CustomTarget_get_target,ridljar/javamaker) : $(ridljar_DIR)/done
|
2011-12-23 06:32:50 -06:00
|
|
|
|
2012-05-09 16:15:42 -05:00
|
|
|
$(ridljar_DIR)/done : $(OUTDIR)/bin/udkapi.rdb \
|
2012-12-30 05:27:04 -06:00
|
|
|
$(call gb_Executable_get_runtime_dependencies,javamaker) \
|
2012-05-09 16:15:42 -05:00
|
|
|
| $(ridljar_DIR)/.dir
|
2012-04-05 09:40:01 -05:00
|
|
|
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),JVM,1)
|
2012-05-09 03:38:39 -05:00
|
|
|
$(call gb_Helper_abbreviate_dirs, \
|
2012-11-28 09:26:19 -06:00
|
|
|
rm -r $(ridljar_DIR) && \
|
2013-04-11 02:27:11 -05:00
|
|
|
$(call gb_Helper_execute,javamaker -O$(ridljar_DIR) $<) && touch $@)
|
2011-12-23 06:32:50 -06:00
|
|
|
|
2011-12-24 08:15:18 -06:00
|
|
|
# vim:set shiftwidth=4 tabstop=4 noexpandtab:
|