~bkerensa/ubuntu/raring/valgrind/merge-from-deb

« back to all changes in this revision

Viewing changes to callgrind/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Andrés Roldán
  • Date: 2008-06-13 02:31:40 UTC
  • mto: (1.4.1 upstream) (2.2.1 squeeze)
  • mto: This revision was merged to the branch mainline in revision 24.
  • Revision ID: james.westby@ubuntu.com-20080613023140-iwk33rz9rhvfkr96
Import upstream version 3.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
noinst_HEADERS = global.h costs.h events.h
6
6
 
7
7
noinst_PROGRAMS = 
8
 
if VG_X86_LINUX
 
8
if VGP_X86_LINUX
9
9
noinst_PROGRAMS += callgrind-x86-linux
10
10
endif
11
 
if VG_AMD64_LINUX
 
11
if VGP_AMD64_LINUX
12
12
noinst_PROGRAMS += callgrind-amd64-linux
13
13
endif
14
 
if VG_PPC32_LINUX
 
14
if VGP_PPC32_LINUX
15
15
noinst_PROGRAMS += callgrind-ppc32-linux
16
16
endif
17
 
if VG_PPC64_LINUX
 
17
if VGP_PPC64_LINUX
18
18
noinst_PROGRAMS += callgrind-ppc64-linux
19
19
endif
 
20
if VGP_PPC32_AIX5
 
21
noinst_PROGRAMS += callgrind-ppc32-aix5
 
22
endif
 
23
if VGP_PPC64_AIX5
 
24
noinst_PROGRAMS += callgrind-ppc64-aix5
 
25
endif
20
26
 
21
27
CALLGRIND_SOURCES_COMMON = main.c events.c bb.c clo.c \
22
28
                           costs.c bbcc.c command.c debug.c fn.c \
28
34
CALLGRIND_SOURCES_PPC32 = ../cachegrind/cg-ppc32.c
29
35
CALLGRIND_SOURCES_PPC64 = ../cachegrind/cg-ppc64.c
30
36
 
31
 
CALLGRIND_CFLAGS_COMMON = -I../cachegrind
 
37
CALLGRIND_CFLAGS_COMMON = -I$(top_srcdir)/cachegrind
 
38
 
 
39
clincludedir = $(includedir)/valgrind
 
40
clinclude_HEADERS = \
 
41
        callgrind.h
32
42
 
33
43
callgrind_x86_linux_SOURCES      = $(CALLGRIND_SOURCES_COMMON) $(CALLGRIND_SOURCES_X86)
34
44
callgrind_x86_linux_CPPFLAGS     = $(AM_CPPFLAGS_X86_LINUX)
58
68
callgrind_ppc64_linux_LDADD        = $(TOOL_LDADD_PPC64_LINUX)
59
69
callgrind_ppc64_linux_LDFLAGS      = $(TOOL_LDFLAGS_PPC64_LINUX)
60
70
 
61
 
clincludedir = $(includedir)/valgrind
 
71
callgrind_ppc32_aix5_SOURCES      = $(CALLGRIND_SOURCES_COMMON) $(CALLGRIND_SOURCES_PPC32)
 
72
callgrind_ppc32_aix5_CPPFLAGS     = $(AM_CPPFLAGS_PPC32_AIX5)
 
73
callgrind_ppc32_aix5_CFLAGS       = $(CALLGRIND_CFLAGS_COMMON) $(AM_CFLAGS_PPC32_AIX5)
 
74
callgrind_ppc32_aix5_DEPENDENCIES = $(COREGRIND_LIBS_PPC32_AIX5)
 
75
callgrind_ppc32_aix5_LDADD        = $(TOOL_LDADD_PPC32_AIX5)
 
76
callgrind_ppc32_aix5_LDFLAGS      = $(TOOL_LDFLAGS_PPC32_AIX5)
62
77
 
63
 
clinclude_HEADERS = \
64
 
        callgrind.h
 
78
callgrind_ppc64_aix5_SOURCES      = $(CALLGRIND_SOURCES_COMMON) $(CALLGRIND_SOURCES_PPC64)
 
79
callgrind_ppc64_aix5_CPPFLAGS     = $(AM_CPPFLAGS_PPC64_AIX5)
 
80
callgrind_ppc64_aix5_CFLAGS       = $(CALLGRIND_CFLAGS_COMMON) $(AM_CFLAGS_PPC64_AIX5)
 
81
callgrind_ppc64_aix5_DEPENDENCIES = $(COREGRIND_LIBS_PPC64_AIX5)
 
82
callgrind_ppc64_aix5_LDADD        = $(TOOL_LDADD_PPC64_AIX5)
 
83
callgrind_ppc64_aix5_LDFLAGS      = $(TOOL_LDFLAGS_PPC64_AIX5)