summaryrefslogtreecommitdiff
path: root/solenv/gbuild/extensions/pre_Counters.mk
blob: eaec75069ec9495759624ddc088e1356e70b0335 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# -*- 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/.
#

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:
ef='/cgit/lo/core/commit/sccomp?id=96c26b0d9d10fa9bac3695222980d7145f0342d7'>use initialiser for Sequence<OUString>Noel Grandin 2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann 2015-10-28com::sun::star->css in scaddins,sccomp,scriptingNoel Grandin 2015-10-12Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY codeStephan Bergmann 2015-10-07Actually check the return values of the various Coin* callsStephan Bergmann 2015-09-15Resolves: tdf#88206 replace cppu::WeakImplHelper* etc.Takeshi Abe 2015-04-01Replace remaining getCppuType et al with cppu::UnoTypeStephan Bergmann 2015-01-04stdexcept for std::runtime_errorCaolán McNamara 2015-01-04boost::unordered_map->std::unordered_mapCaolán McNamara 2014-12-18sccomp: Use appropriate OUString functions on string constantsStephan Bergmann 2014-06-06coverity#1202902 Uncaught CoinError exceptionCaolán McNamara 2014-06-04DeInitVCL at end of testsStephan Bergmann 2014-05-15Resolves fdo#70681: fixincludeguards.pl: all that's leftThomas Arnhold 2014-04-24sccomp: sal_Bool->boolNoel Grandin 2014-04-04sccomp: Fix description of com.sun.star.comp.Calc.CoinMPSolver.Matúš Kukan 2014-04-03loplugin:saloverrideStephan Bergmann 2014-04-03remove unnecessary scope qualifier from sal_Bool usesNoel Grandin 2014-04-03override specifier 'override' not allowed on a destructorMatúš Kukan 2014-04-03sccomp: Share common code and have only one library.Matúš Kukan 2014-04-03sccomp_lpsolver does not need to link against scMatúš Kukan 2014-04-02sccomp: Add very simple unit test for lp solvers.Matúš Kukan 2014-04-01sccomp: Make the source files more similar and fix some problems.Matúš Kukan 2014-04-01Install coinmp and lpsolve linear solvers in parallel.Matúš Kukan 2014-04-01Revert "Allow to build lpsolver based on CoinMP library."Matúš Kukan 2014-03-26First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann 2014-03-04fdo#54938: Convert some places to use cppu::supportsServiceMarcos Paulo de Souza 2014-03-03Allow to build lpsolver based on CoinMP library.Matúš Kukan 2014-03-03118160: Use CoinMP as replacement for lp_solve.Andre Fischer 2014-03-03Rename sccomp/source/solver/solver.cxx to solver-lpsolve.cxxMatúš Kukan 2014-02-26cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann 2014-02-26Remove visual noise from sccompAlexander Wilms 2014-02-23Remove unneccessary commentsAlexander Wilms 2013-12-17Adapt all (non-extension, SharedLibrary) .components to environment="..."Stephan Bergmann 2013-11-14make l10n buildable separatelyBjoern Michaelsen 2013-11-11remove unnecessary use of OUString constructorNoel Grandin