# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t; fill-column: 100 -*-
#
# This file is part of the Collabora Office 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/cargo))

.PHONY: $(call gb_CustomTarget_get_target,rust_uno/cargo)
$(call gb_CustomTarget_get_target,rust_uno/cargo): \
        $(call gb_Library_get_target,rust_uno-cpp) \
        $(gb_CustomTarget_workdir)/rust_uno/rustmaker/cpp
	cd $(SRCDIR)/rust_uno && cargo build $(if $(verbose),--verbose,) --release

#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/cargo):
	$(call gb_Output_announce,rust_uno/cargo,$(false),CUS,3)
	$(call gb_Helper_abbreviate_dirs,\
		rm -rf $(gb_CustomTarget_workdir)/rust_uno/cargo && \
		rm -f $(call gb_CustomTarget_get_target,rust_uno/cargo))
	rm -fr $(SRCDIR)/rust_uno/Cargo.lock $(SRCDIR)/rust_uno/target

# vim: set noet sw=4 ts=4:
