| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 | # StarPU --- Runtime system for heterogeneous multicore architectures.## Copyright (C) 2012                                     Inria# Copyright (C) 2012,2015,2017                           CNRS# Copyright (C) 2012-2014                                Université de Bordeaux## StarPU is free software; you can redistribute it and/or modify# it under the terms of the GNU Lesser General Public License as published by# the Free Software Foundation; either version 2.1 of the License, or (at# your option) any later version.## StarPU is distributed in the hope that it will be useful, but# WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.## See the GNU Lesser General Public License in COPYING.LGPL for more details.## Avoid using nvcc when making a coverity build, nvcc produces millions of# lines of code which we don't want to analyze.  Instead, build dumb .o files# containing empty functions.# Versioning (SONAMEs) for StarPU libraries.# http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html#Updating-version-info# Here are a set of rules to help you update your library version information:# Start with version information of ‘0:0:0’ for each libtool library.# Update the version information only immediately before a public# release of your software. More frequent updates are unnecessary, and# only guarantee that the current interface number gets larger faster.# - If the library source code has changed at all since the last#   update, then increment revision (‘c:r:a’ becomes ‘c:r+1:a’).# - If any interfaces have been added, removed, or changed since the#   last update, increment current, and set revision to 0.# - If any interfaces have been added since the last public release,#   then increment age.# - If any interfaces have been removed or changed since the last#   public release, then set age to 0. change# This is the tarball version, major.minorSTARPU_EFFECTIVE_VERSION=1.3# Note for StarPU 1.1: we have changed ABI# Note for StarPU 1.2: reset everything to 0:0:0# Libtool interface versioning (info "(libtool) Versioning").LIBSTARPU_INTERFACE_CURRENT=0	# increment upon ABI changeLIBSTARPU_INTERFACE_REVISION=0	# increment upon implementation changeLIBSTARPU_INTERFACE_AGE=0	# set to CURRENT - PREVIOUS interfaceLIBSTARPUFFT_INTERFACE_CURRENT=0	# increment upon ABI changeLIBSTARPUFFT_INTERFACE_REVISION=0	# increment upon implementation changeLIBSTARPUFFT_INTERFACE_AGE=0		# set to CURRENT - PREVIOUS interfaceLIBSTARPUMPI_INTERFACE_CURRENT=0	# increment upon ABI changeLIBSTARPUMPI_INTERFACE_REVISION=0	# increment upon implementation changeLIBSTARPUMPI_INTERFACE_AGE=0		# set to CURRENT - PREVIOUS interfaceLIBSOCL_INTERFACE_CURRENT=0	# increment upon ABI changeLIBSOCL_INTERFACE_REVISION=0	# increment upon implementation changeLIBSOCL_INTERFACE_AGE=0		# set to CURRENT - PREVIOUS interface
 |