~ubuntu-branches/ubuntu/quantal/starpu-contrib/quantal

« back to all changes in this revision

Viewing changes to gcc-plugin/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Samuel Thibault
  • Date: 2012-04-12 15:04:15 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20120412150415-gzp107thb5wknugm
Tags: 1.0.1-1
* New upstream release.
* Explicitly use gcc-4.6 to fix plugin build (Closes: Bug#667381).
* Use gcc-4.5 for starpu, as nvcc does not actually support all 4.6
  features, notably not __float128.
* patches/relax-gcc-plugin: Relax gcc-4.6 dependency for plugins to upstream
  release version (Closes: #670422)
* watch: Fix URL.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# StarPU --- Runtime system for heterogeneous multicore architectures.
2
2
#
3
 
# Copyright (C) 2011 Institut National de Recherche en Informatique et Automatique
 
3
# Copyright (C) 2011, 2012 Institut National de Recherche en Informatique et Automatique
4
4
#
5
5
# StarPU is free software; you can redistribute it and/or modify
6
6
# it under the terms of the GNU Lesser General Public License as published by
15
15
 
16
16
SUBDIRS = src tests examples
17
17
 
18
 
EXTRA_DIST = COPYING README
 
18
EXTRA_DIST = COPYING README ChangeLog
19
19
 
20
20
showcheck:
21
21
        for i in $(SUBDIRS) ; do \
22
22
                make -C $$i showcheck ; \
23
23
        done
 
24
 
 
25
# Generate a GNU-style ChangeLog for inclusion in the tarball.
 
26
# It requires network access and may be slow.
 
27
gen-ChangeLog:
 
28
        if test "x$$CHANGELOG" = "xno"; then                                    \
 
29
           echo "ChangeLog not built, per user request" >&2;                    \
 
30
        elif ! xsltproc --version > /dev/null 2>&1; then                        \
 
31
           echo "xsltproc not found, ChangeLog not generated" >&2;              \
 
32
        elif ! test -d "$(srcdir)/.svn"; then                                   \
 
33
           echo "Subversion meta-data not found, ChangeLog not generated" >&2;  \
 
34
        elif ! svn --version > /dev/null 2>&1; then                             \
 
35
           echo "Subversion not found, ChangeLog not generated" >&2;            \
 
36
        else                                                                    \
 
37
           ( cd "$(srcdir)";                                                    \
 
38
             svn log --xml --verbose ) |                                        \
 
39
           xsltproc "$(top_srcdir)/build-aux/svn2cl.xsl" - > "ChangeLog.tmp";   \
 
40
           mv "ChangeLog.tmp" "$(distdir)/ChangeLog";                           \
 
41
        fi
 
42
 
 
43
dist-hook: gen-ChangeLog
 
44
 
 
45
.PHONY: showcheck dist-hook gen-ChangeLog