5d8f48c81e
... it is an abbreviation of "Solar Version". Since nobody can remember that: remove OUTDIR OUTDIR_FOR_BUILD SOLARVER SOLARVERSION solarpath and any mention thereof. Change-Id: Idb3031c4f25a76ac05b22ec67e3ca3e1e8e512ad Reviewed-on: https://gerrit.libreoffice.org/6515 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
30 lines
1.1 KiB
Makefile
30 lines
1.1 KiB
Makefile
#
|
|
# 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/.
|
|
#
|
|
|
|
gb_CountersOutdated_COUNTER_ALL:=
|
|
gb_CountersOutdated_COUNTER_TYPES:=
|
|
|
|
.PHONY: countoutdated
|
|
countoutdated:
|
|
$(info total outdated files: $(words $(gb_CountersOutdated_COUNTER_ALL)))
|
|
$(info types of outdated files: $(gb_CountersOutdated_TYPES))
|
|
$(foreach type,$(gb_CountersOutdated_TYPES),$(info $(type): $(words $(gb_CountersOutdated_COUNTER_$(type)))))
|
|
@true
|
|
|
|
ifneq ($(filter countoutdated,$(MAKECMDGOALS)),)
|
|
|
|
$(WORKDIR)/%:
|
|
$(eval gb_CountersOutdated_COUNTER_ALL+= x)
|
|
$(eval gb_CountersOutdated__TYPE=$(firstword $(subst /, ,$*)))
|
|
$(if $(filter undefined,$(origin gb_CountersOutdated_COUNTER_$(gb_CountersOutdated__TYPE))),$(eval gb_CountersOutdated_COUNTER_$(gb_CountersOutdated__TYPE):=) $(eval gb_CountersOutdated_TYPES+=$(gb_CountersOutdated__TYPE)))
|
|
$(eval gb_CountersOutdated_COUNTER_$(gb_CountersOutdated__TYPE)+= x)
|
|
@true
|
|
|
|
endif
|
|
|
|
# vim: set noet ts=4 sw=4:
|