office-gobmx/ridljar/CustomTarget_javamaker.mk

25 lines
912 B
Makefile
Raw Normal View History

2011-12-23 06:32:50 -06:00
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
#
# This file is part of the LibreOffice project.
2011-12-23 06:32:50 -06: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
#
$(eval $(call gb_CustomTarget_CustomTarget,ridljar/javamaker))
2011-12-23 06:32:50 -06:00
ridljar_DIR := $(call gb_CustomTarget_get_workdir,ridljar/javamaker)
2012-04-05 09:40:01 -05:00
$(call gb_CustomTarget_get_target,ridljar/javamaker) : $(ridljar_DIR)/done
2011-12-23 06:32:50 -06:00
$(ridljar_DIR)/done : $(OUTDIR)/bin/udkapi.rdb \
$(call gb_Executable_get_runtime_dependencies,javamaker) \
| $(ridljar_DIR)/.dir
2012-04-05 09:40:01 -05:00
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),JVM,1)
$(call gb_Helper_abbreviate_dirs, \
rm -r $(ridljar_DIR) && \
$(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: