6922c2fcfe
As
commit b9cd02937b
Author: Michael Weghorn <m.weghorn@posteo.de>
Date: Tue Sep 28 15:55:43 2021 +0200
qt5: Rename sources + headers according to new class names
did for the qt5 VCL plugin, this renames the source and header files
according to the new class names without a "5" in them, as mentioned
in
Change-Id If785792f8669688de2156b1a990d7956dbe7a401
("kf5: Remove "5" from class names in kf5 VCL plugin"):
> Renaming the headers and source files will be done
> in a separate commit to make tracking git history easier.
Change-Id: Ieb49cda25b170ac777029f7288a885a0b953e02d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153434
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
23 lines
865 B
Makefile
23 lines
865 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# 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,vcl/unx/kf5))
|
|
|
|
$(call gb_CustomTarget_get_target,vcl/unx/kf5) : \
|
|
$(call gb_CustomTarget_get_workdir,vcl/unx/kf5)/KFFilePicker.moc
|
|
|
|
$(call gb_CustomTarget_get_workdir,vcl/unx/kf5)/%.moc : \
|
|
$(SRCDIR)/vcl/unx/kf5/%.hxx \
|
|
| $(call gb_CustomTarget_get_workdir,vcl/unx/kf5)/.dir
|
|
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),MOC,1)
|
|
$(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),MOC)
|
|
$(MOC5) $< -o $@
|
|
$(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),MOC)
|
|
|
|
# vim: set noet sw=4:
|