sink.text.pretty: print discarded events/packets warning
[babeltrace.git] / include / Makefile.am
CommitLineData
7845e95f
MJ
1##
2## This target generates an include file that contains the git version
3## string of the current branch, it must be continuously updated when
4## we build in the git repo and shipped in dist tarballs to reflect the
5## status of the tree when it was generated. If the tree is clean and
6## the current commit is tag a starting with "v", consider this a
7## release version and set an empty git version.
8##
9## Here is what the inline script does:
10##
11## First, delete any stale "version.i.tmp" file.
12##
13## If "bootstrap" and ".git" exists in the top source directory and the git
14## executable is available, get the current git version string in the form:
15##
16## "latest_tag"(-"number_of_commits_on_top")(-g"latest_commit_hash")(-dirty)
17##
18## And store it in "version.i.tmp", if the current commit is tagged, the tag
19## starts with "v" and the tree is clean, consider this a release version and
20## overwrite the git version with an empty string in "version.i.tmp".
21##
22## If we don't have a "version.i.tmp" nor a "version.i", generate an empty
23## string as a failover.
24##
25## If we don't have a "version.i" or we have both files and they are different,
26## copy "version.i.tmp" over "version.i". This way the dependent targets are
27## only rebuilt when the version string changes.
28##
29
30version_verbose = $(version_verbose_@AM_V@)
31version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
32version_verbose_0 = @echo " GEN " $@;
33
34version.i:
35 $(version_verbose)rm -f version.i.tmp; \
36 if (test -r "$(top_srcdir)/bootstrap" && test -r "$(top_srcdir)/.git") && \
37 test -x "`which git 2>&1;true`"; then \
38 GIT_VERSION_STR="`cd "$(top_srcdir)" && git describe --tags --dirty`"; \
39 GIT_CURRENT_TAG="`cd "$(top_srcdir)" && git describe --tags --exact-match --match="v[0-9]*" HEAD 2> /dev/null`"; \
40 echo "#define GIT_VERSION \"$$GIT_VERSION_STR\"" > version.i.tmp; \
41 if ! $(GREP) -- "-dirty" version.i.tmp > /dev/null && \
42 test "x$$GIT_CURRENT_TAG" != "x"; then \
43 echo "#define GIT_VERSION \"\"" > version.i.tmp; \
44 fi; \
45 fi; \
46 if test ! -f version.i.tmp; then \
47 if test ! -f version.i; then \
48 echo '#define GIT_VERSION ""' > version.i; \
49 fi; \
50 elif test ! -f version.i || \
51 test x"`cat version.i.tmp`" != x"`cat version.i`"; then \
52 mv version.i.tmp version.i; \
53 fi; \
54 rm -f version.i.tmp; \
55 true
56
57##
58## version.i is defined as a .PHONY target even if it's a real file,
59## we want the target to be re-run on every make.
60##
61.PHONY: version.i
62
63CLEANFILES = version.i.tmp
64
65##
66## Only clean "version.i" on dist-clean, we need to keep it on regular
67## clean when it's part of a dist tarball.
68##
69DISTCLEANFILES = version.i
70
6941b8e8 71# Core API
9ffc0257 72babeltraceincludedir = "$(includedir)/babeltrace"
0ec662bd
JD
73babeltraceinclude_HEADERS = \
74 babeltrace/babeltrace.h \
7a6224c4 75 babeltrace/logging.h \
c057dea0
PP
76 babeltrace/ref.h \
77 babeltrace/types.h \
78 babeltrace/values.h \
79 babeltrace/version.h
0ec662bd 80
6941b8e8 81# Legacy API (for CTF writer)
9ffc0257 82babeltracectfincludedir = "$(includedir)/babeltrace/ctf"
64a35d1b 83babeltracectfinclude_HEADERS = \
dc3fffef 84 babeltrace/ctf/events.h
273b65be 85
6941b8e8 86# CTF writer API
9ffc0257 87babeltracectfwriterincludedir = "$(includedir)/babeltrace/ctf-writer"
273b65be 88babeltracectfwriterinclude_HEADERS = \
3dca2276 89 babeltrace/ctf-writer/clock-class.h \
46bd0f2b 90 babeltrace/ctf-writer/clock.h \
46bd0f2b 91 babeltrace/ctf-writer/event-fields.h \
46bd0f2b 92 babeltrace/ctf-writer/event.h \
3dca2276
PP
93 babeltrace/ctf-writer/event-types.h \
94 babeltrace/ctf-writer/fields.h \
95 babeltrace/ctf-writer/field-types.h \
c057dea0 96 babeltrace/ctf-writer/stream-class.h \
adc315b8 97 babeltrace/ctf-writer/stream.h \
3dca2276 98 babeltrace/ctf-writer/trace.h \
c057dea0 99 babeltrace/ctf-writer/writer.h
adc315b8 100
6941b8e8 101# CTF IR API
9ffc0257 102babeltracectfirincludedir = "$(includedir)/babeltrace/ctf-ir"
adc315b8 103babeltracectfirinclude_HEADERS = \
ac0c6bdd 104 babeltrace/ctf-ir/clock-class.h \
c057dea0 105 babeltrace/ctf-ir/clock-value.h \
1ddd69e6 106 babeltrace/ctf-ir/clock.h \
272df73e 107 babeltrace/ctf-ir/event-class.h \
c057dea0 108 babeltrace/ctf-ir/event.h \
312c056a 109 babeltrace/ctf-ir/event-header-field.h \
b011f6b0 110 babeltrace/ctf-ir/field-path.h \
c057dea0
PP
111 babeltrace/ctf-ir/field-types.h \
112 babeltrace/ctf-ir/fields.h \
f79cf0f0 113 babeltrace/ctf-ir/packet.h \
312c056a
PP
114 babeltrace/ctf-ir/packet-context-field.h \
115 babeltrace/ctf-ir/packet-header-field.h \
bc37ae52 116 babeltrace/ctf-ir/stream-class.h \
c057dea0 117 babeltrace/ctf-ir/stream.h \
654c1444 118 babeltrace/ctf-ir/trace.h \
8bf65fbd
JG
119 babeltrace/ctf-ir/utils.h \
120 babeltrace/ctf-ir/visitor.h
70bd0a12 121
6941b8e8 122# Plugin and plugin development API
9ffc0257 123babeltracepluginincludedir = "$(includedir)/babeltrace/plugin"
6ee873c6 124babeltraceplugininclude_HEADERS = \
c057dea0
PP
125 babeltrace/plugin/plugin-dev.h \
126 babeltrace/plugin/plugin.h
33b34c43 127
6941b8e8 128# Graph, component, and notification API
9ffc0257 129babeltracegraphincludedir = "$(includedir)/babeltrace/graph"
b2e0c907
PP
130babeltracegraphinclude_HEADERS = \
131 babeltrace/graph/component-class-filter.h \
132 babeltrace/graph/component-class-sink.h \
133 babeltrace/graph/component-class-source.h \
134 babeltrace/graph/component-class.h \
135 babeltrace/graph/component-filter.h \
136 babeltrace/graph/component-sink.h \
137 babeltrace/graph/component-source.h \
cc469c42 138 babeltrace/graph/component-status.h \
b2e0c907
PP
139 babeltrace/graph/component.h \
140 babeltrace/graph/connection.h \
141 babeltrace/graph/graph.h \
b2e0c907 142 babeltrace/graph/notification-event.h \
ece3fb0f 143 babeltrace/graph/notification-inactivity.h \
b2e0c907 144 babeltrace/graph/notification-iterator.h \
b2e0c907 145 babeltrace/graph/notification-packet.h \
b2e0c907 146 babeltrace/graph/notification-stream.h \
c057dea0 147 babeltrace/graph/notification.h \
8ed535b5 148 babeltrace/graph/output-port-notification-iterator.h \
b2e0c907
PP
149 babeltrace/graph/port.h \
150 babeltrace/graph/private-component-filter.h \
151 babeltrace/graph/private-component-sink.h \
152 babeltrace/graph/private-component-source.h \
153 babeltrace/graph/private-component.h \
90157d89
PP
154 babeltrace/graph/private-connection-notification-iterator.h \
155 babeltrace/graph/private-connection-private-notification-iterator.h \
b2e0c907 156 babeltrace/graph/private-connection.h \
90157d89
PP
157 babeltrace/graph/private-port.h \
158 babeltrace/graph/query-executor.h
6ee873c6 159
e92927d1 160noinst_HEADERS = \
3dca2276 161 babeltrace/compat/stdlib-internal.h \
beb0fb75
PP
162 babeltrace/compat/fcntl-internal.h \
163 babeltrace/compat/glib-internal.h \
3dca2276
PP
164 babeltrace/compat/uuid-internal.h \
165 babeltrace/compat/unistd-internal.h \
beb0fb75 166 babeltrace/compat/stdio-internal.h \
58a2480d 167 babeltrace/compat/time-internal.h \
beb0fb75 168 babeltrace/compat/utc-internal.h \
3dca2276
PP
169 babeltrace/compat/memstream-internal.h \
170 babeltrace/compat/string-internal.h \
171 babeltrace/compat/limits-internal.h \
172 babeltrace/compat/mman-internal.h \
173 babeltrace/compat/socket-internal.h \
174 babeltrace/common-internal.h \
175 babeltrace/bitfield-internal.h \
176 babeltrace/object-internal.h \
312c056a 177 babeltrace/object-pool-internal.h \
3dca2276
PP
178 babeltrace/plugin/plugin-internal.h \
179 babeltrace/plugin/plugin-so-internal.h \
180 babeltrace/plugin/python-plugin-provider-internal.h \
181 babeltrace/assert-internal.h \
182 babeltrace/values-internal.h \
183 babeltrace/ctf-writer/fields-internal.h \
184 babeltrace/ctf-writer/stream-class-internal.h \
185 babeltrace/ctf-writer/event-internal.h \
186 babeltrace/ctf-writer/trace-internal.h \
187 babeltrace/ctf-writer/field-types-internal.h \
188 babeltrace/ctf-writer/serialize-internal.h \
189 babeltrace/ctf-writer/writer-internal.h \
190 babeltrace/ctf-writer/stream-internal.h \
191 babeltrace/ctf-writer/clock-internal.h \
192 babeltrace/ctf-writer/functor-internal.h \
193 babeltrace/mmap-align-internal.h \
194 babeltrace/align-internal.h \
195 babeltrace/logging-internal.h \
196 babeltrace/endian-internal.h \
197 babeltrace/ctf-ir/packet-internal.h \
272df73e 198 babeltrace/ctf-ir/event-class-internal.h \
3dca2276
PP
199 babeltrace/ctf-ir/utils-internal.h \
200 babeltrace/ctf-ir/validation-internal.h \
201 babeltrace/ctf-ir/fields-internal.h \
202 babeltrace/ctf-ir/stream-class-internal.h \
beb0fb75 203 babeltrace/ctf-ir/event-internal.h \
b011f6b0 204 babeltrace/ctf-ir/field-path-internal.h \
312c056a 205 babeltrace/ctf-ir/field-wrapper-internal.h \
3dca2276
PP
206 babeltrace/ctf-ir/trace-internal.h \
207 babeltrace/ctf-ir/clock-class-internal.h \
beb0fb75 208 babeltrace/ctf-ir/field-types-internal.h \
3dca2276 209 babeltrace/ctf-ir/clock-value-internal.h \
e22b45d0 210 babeltrace/ctf-ir/clock-value-set-internal.h \
3dca2276 211 babeltrace/ctf-ir/attributes-internal.h \
3f043b05 212 babeltrace/ctf-ir/stream-internal.h \
3dca2276 213 babeltrace/ctf-ir/resolve-internal.h \
8bf65fbd 214 babeltrace/ctf-ir/visitor-internal.h \
3dca2276
PP
215 babeltrace/prio-heap-internal.h \
216 babeltrace/lib-logging-internal.h \
217 babeltrace/compiler-internal.h \
218 babeltrace/babeltrace-internal.h \
219 babeltrace/assert-pre-internal.h \
beb0fb75 220 babeltrace/graph/component-internal.h \
3dca2276 221 babeltrace/graph/notification-stream-internal.h \
beb0fb75 222 babeltrace/graph/connection-internal.h \
b2e0c907 223 babeltrace/graph/notification-event-internal.h \
3dca2276
PP
224 babeltrace/graph/query-executor-internal.h \
225 babeltrace/graph/graph-internal.h \
226 babeltrace/graph/component-class-sink-colander-internal.h \
ece3fb0f 227 babeltrace/graph/notification-inactivity-internal.h \
3dca2276 228 babeltrace/graph/component-source-internal.h \
b2e0c907 229 babeltrace/graph/notification-packet-internal.h \
3dca2276
PP
230 babeltrace/graph/notification-iterator-internal.h \
231 babeltrace/graph/notification-internal.h \
232 babeltrace/graph/component-filter-internal.h \
233 babeltrace/graph/component-class-internal.h \
234 babeltrace/graph/component-sink-internal.h \
beb0fb75 235 babeltrace/graph/port-internal.h \
45ff8fe4 236 babeltrace/list-internal.h \
7845e95f
MJ
237 version.h \
238 version.i
This page took 0.060388 seconds and 4 git commands to generate.