File: Makefile.am

package info (click to toggle)
eztrace 1.0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 4,848 kB
  • ctags: 4,054
  • sloc: ansic: 24,825; sh: 11,408; perl: 1,107; makefile: 872; f90: 295; python: 57; fortran: 38
file content (157 lines) | stat: -rw-r--r-- 4,557 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
# Copyright (C) CNRS, INRIA, Universite Bordeaux 1, Telecom SudParis
# See COPYING in top-level directory.

ACLOCAL_AMFLAGS=-I m4

if AMEXTERNLITL
TLCFLAGS=$(TL_CPPFLAGS)
TLLDFLAGS=$(TL_LDFLAGS)
TLLIBADD=$(TL_LIB)
else # AMEXTERNLITL

TLCFLAGS = -I$(top_srcdir)/extlib/litl/src -I$(top_builddir)/extlib/litl/src
TLLDFLAGS = $(top_builddir)/extlib/litl/src/liblitl.la
TLLIBADD=$(TL_LIB)
endif # AMINTERNLITL

if AMEXTERNGTG
GTGCFLAGS=$(GTG_CPPFLAGS)
GTGLDFLAGS=$(GTG_LDFLAGS)
else # AMEXTERNGTG

GTGCFLAGS = -I$(top_srcdir)/extlib/gtg/tools -I$(top_builddir)/extlib/gtg
GTGLDFLAGS = $(top_builddir)/extlib/gtg/libgtg.la
endif # AMEXTERNGTG

SUBDIRS = \
	  src/core/ \
	  src/modules/omp \
	  src/modules/mpi \
	  src/modules/pthread \
	  src/modules/stdio \
	  src/modules/memory \
	  src/modules/papi \
	  src/modules/cuda \
	  test/mpi \
	  test/openmp \
	  test/pptrace/automatic \
	  test/static \
	  test/stdio \
	  test/memory \
	  test/pthread \
	  test/automake

if WITHDOC
SUBDIRS += doc
endif #WITHDOC


pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = eztrace.pc

if WITHDOC
dist_man_MANS = doc/man/eztrace.1               \
		doc/man/eztrace.old.1           \
		doc/man/eztrace_avail.1         \
		doc/man/eztrace_cc.1            \
		doc/man/eztrace_convert.1       \
		doc/man/eztrace_create_plugin.1 \
		doc/man/eztrace_loaded.1        \
		doc/man/eztrace_stats.1
endif #WITHDOC

EXTRA_DIST = \
	     bootstrap \
	     ChangeLog \
	     README.stats \
	     test/mpi/Makefile.am \
	     test/mpi/mpi_openmp.c \
	     test/mpi/mpi_ring.c \
	     test/mpi/mpi_ping.c \
	     test/mpi/mpi_spawn.c \
	     test/mpi/persistent.c \
	     test/mpi/test_mpi.c \
	     test/mpi/mpi_multiring.c \
	     test/mpi/waitany.c \
	     test/mpi/allgather.c \
	     test/mpi/waitall.c \
	     test/openmp/Makefile.am \
	     test/openmp/simple.c \
	     test/openmp/openmp_nowait.f \
	     test/openmp/openmp_nowait_c.c \
	     test/openmp/test_task.c \
	     test/pthread/cond.c \
	     test/pthread/race_cond.c \
	     test/pthread/dummy_thread.c \
	     test/pthread/test_pthread.c \
	     test/pthread/test_sigsegv.c \
	     test/stdio/stdio.c \
	     test/memory/memory.c \
	     test/module_generator/example.tpl \
	     test/module_generator/example_application/example.c \
	     test/module_generator/example_application/example.h \
	     test/module_generator/example_application/main.c \
	     test/module_generator/example_application/Makefile \
	     example/README \
	     example/libexample_eztrace/example.c \
	     example/libexample_eztrace/example_ev_codes.h \
	     example/libexample_eztrace/eztrace_convert_example.c \
	     example/libexample_eztrace/Makefile \
	     example/libexample_orig/static_example.c \
	     example/libexample_orig/example.c \
	     example/libexample_orig/example.h \
	     example/libexample_orig/main.c \
	     example/libexample_orig/Makefile \
	     test/static/Makefile.in \
	     test/static/static.c \
	     test/static/staticlib.c \
	     test/static/staticlib_ev_codes.h \
	     test/static/eztrace_convert_staticlib.c \
	     test/pptrace/automatic/binary.c \
	     test/pptrace/automatic/common.h \
	     test/pptrace/automatic/errors.c \
	     test/pptrace/automatic/hijack.c \
	     test/pptrace/automatic/Makefile.in \
	     test/pptrace/automatic/opcodes.c \
	     test/pptrace/automatic/tracing.c \
	     test/pptrace/automatic/wait_open.c \
	     test/pptrace/automatic/testcase/Makefile \
	     test/pptrace/automatic/testcase/titi.c

if WITHDOC
EXTRA_DIST += doc/user_manual.tex
endif #WITHDOC

include_HEADERS = src/pptrace/types.h \
				  src/pptrace/pptrace.h \
		  src/pptrace/opcodes.h \
		  src/pptrace/memory.h \
		  src/pptrace/hijack.h \
		  src/pptrace/isize.h \
		  src/pptrace/binary.h \
		  src/pptrace/errors.h \
		  src/pptrace/tracing.h \
		  src/pptrace/os/linux/linux.h \
		  src/pptrace/os/linux/linux.c \
		  src/pptrace/arch/bfd.c
if X86_64
include_HEADERS += src/pptrace/arch/x86_64/trace.c \
		   src/pptrace/arch/x86_64/opcode.c \
		   src/pptrace/arch/x86_64/hijack.c
endif # X86_64

if ARM
include_HEADERS += src/pptrace/arch/armv7/trace.c \
		   src/pptrace/arch/armv7/opcode.c
endif # ARM
include_HEADERS += src/pptrace/cpu/intel.c \
		   src/pptrace/cpu/arm.c

SHELLTESTS = test/pptrace/automatic/errors.test \
	     test/pptrace/automatic/binary.test \
	     test/pptrace/automatic/tracing.test \
	     test/pptrace/automatic/opcodes.test \
	     test/pptrace/automatic/wait_open.test \
	     test/pptrace/automatic/hijack.test

#TESTS=$(SHELLTESTS) $(CTESTS)