Browse Source

Add missing file extensions when cleaning with --enable-coverage parameter

Corentin Salingue 9 years ago
parent
commit
e2276ae56a
3 changed files with 4 additions and 2 deletions
  1. 1 1
      examples/stencil/Makefile.am
  2. 1 1
      socl/examples/Makefile.am
  3. 2 0
      socl/src/Makefile.am

+ 1 - 1
examples/stencil/Makefile.am

@@ -124,7 +124,7 @@ EXTRA_DIST = $(outs) results run README
 
 pics: $(outs:.out=.xpm)
 
-CLEANFILES = *.xpm starpu_idle_microsec.log
+CLEANFILES = *.gcno *.gcda *.xpm starpu_idle_microsec.log
 
 
 .out.out2:

+ 1 - 1
socl/examples/Makefile.am

@@ -46,7 +46,7 @@ endif
 
 endif
 
-CLEANFILES = starpu_idle_microsec.log
+CLEANFILES = *.gcno *.gcda starpu_idle_microsec.log
 
 examplebindir = $(libdir)/starpu/examples/socl/
 examplebin_PROGRAMS =

+ 2 - 0
socl/src/Makefile.am

@@ -16,6 +16,8 @@
 
 include $(top_srcdir)/starpu.mk
 
+CLEANFILES = *.gcno *.gcda
+
 AM_CFLAGS = $(GLOBAL_AM_CFLAGS) $(STARPU_CUDA_CPPFLAGS) $(STARPU_OPENCL_CPPFLAGS) $(HWLOC_CFLAGS)
 libsocl_@STARPU_EFFECTIVE_VERSION@_la_LIBADD = $(top_builddir)/src/libstarpu-@STARPU_EFFECTIVE_VERSION@.la
 AM_CPPFLAGS = -DBUILDING_SOCL -I$(top_srcdir)/include/ -I$(top_builddir)/include -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/socl/src