Files
core/rust_uno/CustomTarget_rustmaker.mk
Stephan Bergmann 6d12a896d6 Clean the artifacts that rust_uno/CustomTarget_* put in $(SRCDIR)
This is a temporary measure.  The right fix will be to not have those
CustomTargets put anything into $(SRCDIR) in the first place.

Change-Id: Ib211b5bc5e0059c8c8206c044e28443265d69353
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/194517
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@collabora.com>
Code-Style: Stephan Bergmann <stephan.bergmann@collabora.com>
2025-11-25 14:59:18 +01:00

41 lines
1.8 KiB
Makefile

# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 100 -*-
#
# This file is part of the LibreOffice project.
#
# 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/.
#
$(eval $(call gb_CustomTarget_CustomTarget,rust_uno/rustmaker))
$(call gb_CustomTarget_get_target,rust_uno/rustmaker): \
$(gb_CustomTarget_workdir)/rust_uno/rustmaker/cpp
$(gb_CustomTarget_workdir)/rust_uno/rustmaker/cpp: \
$(call gb_Executable_get_target,rustmaker) \
$(call gb_Executable_get_runtime_dependencies,rustmaker) \
$(call gb_UnoApi_get_target,offapi) \
$(call gb_UnoApi_get_target,udkapi) \
$(gb_CustomTarget_workdir)/rust_uno/rustmaker/.dir
rm -fr $(SRCDIR)/rust_uno/src/generated
mkdir $(SRCDIR)/rust_uno/src/generated
rm -fr $(gb_CustomTarget_workdir)/rust_uno/rustmaker/cpp
mkdir $(gb_CustomTarget_workdir)/rust_uno/rustmaker/cpp
$(call gb_Helper_abbreviate_dirs, \
$(call gb_Helper_execute,rustmaker $(if $(verbose),--verbose,) -Ocpp $(gb_CustomTarget_workdir)/rust_uno/rustmaker/cpp \
$(if $(verbose),--verbose,) -Orust $(SRCDIR)/rust_uno/src/generated \
$(call gb_UnoApi_get_target,offapi) $(call gb_UnoApi_get_target,udkapi)))
touch $@
#TODO: Add to the general pattern rule from solenv/gbuild/CustomTarget.mk, instead of having to
# repeat its recipe here:
$(call gb_CustomTarget_get_clean_target,rust_uno/rustmaker):
$(call gb_Output_announce,rust_uno/rustmaker,$(false),CUS,3)
$(call gb_Helper_abbreviate_dirs,\
rm -rf $(gb_CustomTarget_workdir)/rust_uno/rustmaker && \
rm -f $(call gb_CustomTarget_get_target,rust_uno/rustmaker))
rm -fr $(SRCDIR)/rust_uno/src/generated
# vim: set noet sw=4 ts=4: