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

« back to all changes in this revision

Viewing changes to gcc-plugin/Makefile.in

  • 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:
17
17
 
18
18
# StarPU --- Runtime system for heterogeneous multicore architectures.
19
19
#
20
 
# Copyright (C) 2011 Institut National de Recherche en Informatique et Automatique
 
20
# Copyright (C) 2011, 2012 Institut National de Recherche en Informatique et Automatique
21
21
#
22
22
# StarPU is free software; you can redistribute it and/or modify
23
23
# it under the terms of the GNU Lesser General Public License as published by
50
50
target_triplet = @target@
51
51
subdir = gcc-plugin
52
52
DIST_COMMON = README $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
53
 
        COPYING
 
53
        COPYING ChangeLog
54
54
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
55
55
am__aclocal_m4_deps = $(top_srcdir)/m4/acinclude.m4 \
56
56
        $(top_srcdir)/m4/gcc.m4 $(top_srcdir)/m4/libs.m4 \
345
345
top_builddir = @top_builddir@
346
346
top_srcdir = @top_srcdir@
347
347
SUBDIRS = src tests examples
348
 
EXTRA_DIST = COPYING README
 
348
EXTRA_DIST = COPYING README ChangeLog
349
349
all: all-recursive
350
350
 
351
351
.SUFFIXES:
579
579
              || exit 1; \
580
580
          fi; \
581
581
        done
 
582
        $(MAKE) $(AM_MAKEFLAGS) \
 
583
          top_distdir="$(top_distdir)" distdir="$(distdir)" \
 
584
          dist-hook
582
585
check-am: all-am
583
586
check: check-recursive
584
587
all-am: Makefile
685
688
 
686
689
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
687
690
        all all-am check check-am clean clean-generic clean-libtool \
688
 
        ctags ctags-recursive distclean distclean-generic \
 
691
        ctags ctags-recursive dist-hook distclean distclean-generic \
689
692
        distclean-libtool distclean-tags distdir dvi dvi-am html \
690
693
        html-am info info-am install install-am install-data \
691
694
        install-data-am install-dvi install-dvi-am install-exec \
703
706
                make -C $$i showcheck ; \
704
707
        done
705
708
 
 
709
# Generate a GNU-style ChangeLog for inclusion in the tarball.
 
710
# It requires network access and may be slow.
 
711
gen-ChangeLog:
 
712
        if test "x$$CHANGELOG" = "xno"; then                                    \
 
713
           echo "ChangeLog not built, per user request" >&2;                    \
 
714
        elif ! xsltproc --version > /dev/null 2>&1; then                        \
 
715
           echo "xsltproc not found, ChangeLog not generated" >&2;              \
 
716
        elif ! test -d "$(srcdir)/.svn"; then                                   \
 
717
           echo "Subversion meta-data not found, ChangeLog not generated" >&2;  \
 
718
        elif ! svn --version > /dev/null 2>&1; then                             \
 
719
           echo "Subversion not found, ChangeLog not generated" >&2;            \
 
720
        else                                                                    \
 
721
           ( cd "$(srcdir)";                                                    \
 
722
             svn log --xml --verbose ) |                                        \
 
723
           xsltproc "$(top_srcdir)/build-aux/svn2cl.xsl" - > "ChangeLog.tmp";   \
 
724
           mv "ChangeLog.tmp" "$(distdir)/ChangeLog";                           \
 
725
        fi
 
726
 
 
727
dist-hook: gen-ChangeLog
 
728
 
 
729
.PHONY: showcheck dist-hook gen-ChangeLog
 
730
 
706
731
# Tell versions [3.59,3.63) of GNU make to not export all variables.
707
732
# Otherwise a system limit (for SysV at least) may be exceeded.
708
733
.NOEXPORT: