lib: rename bt_plugin_create_all_*() -> bt_plugin_find_all_*()
[babeltrace.git] / include / Makefile.am
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
30 version_verbose = $(version_verbose_@AM_V@)
31 version_verbose_ = $(version_verbose_@AM_DEFAULT_V@)
32 version_verbose_0 = @echo " GEN " $@;
33
34 version.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
63 CLEANFILES = 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 ##
69 DISTCLEANFILES = version.i
70
71 # Core API
72 babeltraceincludedir = "$(includedir)/babeltrace"
73 babeltraceinclude_HEADERS = \
74 babeltrace/babeltrace.h \
75 babeltrace/logging.h \
76 babeltrace/property.h \
77 babeltrace/types.h \
78 babeltrace/value-const.h \
79 babeltrace/value.h \
80 babeltrace/version.h
81
82 # Legacy API (for CTF writer)
83 babeltracectfincludedir = "$(includedir)/babeltrace/ctf"
84 babeltracectfinclude_HEADERS = \
85 babeltrace/ctf/events.h
86
87 # CTF writer API
88 babeltracectfwriterincludedir = "$(includedir)/babeltrace/ctf-writer"
89 babeltracectfwriterinclude_HEADERS = \
90 babeltrace/ctf-writer/clock.h \
91 babeltrace/ctf-writer/event-fields.h \
92 babeltrace/ctf-writer/event.h \
93 babeltrace/ctf-writer/event-types.h \
94 babeltrace/ctf-writer/fields.h \
95 babeltrace/ctf-writer/field-types.h \
96 babeltrace/ctf-writer/stream-class.h \
97 babeltrace/ctf-writer/stream.h \
98 babeltrace/ctf-writer/trace.h \
99 babeltrace/ctf-writer/utils.h \
100 babeltrace/ctf-writer/visitor.h \
101 babeltrace/ctf-writer/writer.h
102
103 # Legacy API (for CTF writer)
104 babeltracectfirincludedir = "$(includedir)/babeltrace/ctf-ir"
105 babeltracectfirinclude_HEADERS = \
106 babeltrace/ctf-ir/clock.h \
107 babeltrace/ctf-ir/event-fields.h \
108 babeltrace/ctf-ir/event-types.h \
109 babeltrace/ctf-ir/event.h \
110 babeltrace/ctf-ir/field-types.h \
111 babeltrace/ctf-ir/fields.h \
112 babeltrace/ctf-ir/stream-class.h \
113 babeltrace/ctf-ir/stream.h \
114 babeltrace/ctf-ir/trace.h \
115 babeltrace/ctf-ir/utils.h
116
117 # Trace IR API
118 babeltracetraceirincludedir = "$(includedir)/babeltrace/trace-ir"
119 babeltracetraceirinclude_HEADERS = \
120 babeltrace/trace-ir/clock-class-const.h \
121 babeltrace/trace-ir/clock-class.h \
122 babeltrace/trace-ir/clock-value-const.h \
123 babeltrace/trace-ir/event-class-const.h \
124 babeltrace/trace-ir/event-class.h \
125 babeltrace/trace-ir/event-const.h \
126 babeltrace/trace-ir/event-header-field.h \
127 babeltrace/trace-ir/event.h \
128 babeltrace/trace-ir/field-class-const.h \
129 babeltrace/trace-ir/field-class.h \
130 babeltrace/trace-ir/field-path-const.h \
131 babeltrace/trace-ir/field-const.h \
132 babeltrace/trace-ir/field.h \
133 babeltrace/trace-ir/packet-const.h \
134 babeltrace/trace-ir/packet-context-field.h \
135 babeltrace/trace-ir/packet-header-field.h \
136 babeltrace/trace-ir/packet.h \
137 babeltrace/trace-ir/stream-class-const.h \
138 babeltrace/trace-ir/stream-class.h \
139 babeltrace/trace-ir/stream-const.h \
140 babeltrace/trace-ir/stream.h \
141 babeltrace/trace-ir/trace-class-const.h \
142 babeltrace/trace-ir/trace-class.h \
143 babeltrace/trace-ir/trace-const.h \
144 babeltrace/trace-ir/trace.h
145
146 # Plugin and plugin development API
147 babeltracepluginincludedir = "$(includedir)/babeltrace/plugin"
148 babeltraceplugininclude_HEADERS = \
149 babeltrace/plugin/plugin-dev.h \
150 babeltrace/plugin/plugin-const.h \
151 babeltrace/plugin/plugin-set-const.h
152
153 # Graph, component, and notification API
154 babeltracegraphincludedir = "$(includedir)/babeltrace/graph"
155 babeltracegraphinclude_HEADERS = \
156 babeltrace/graph/component-class-const.h \
157 babeltrace/graph/component-class-filter-const.h \
158 babeltrace/graph/component-class-filter.h \
159 babeltrace/graph/component-class-sink-const.h \
160 babeltrace/graph/component-class-sink.h \
161 babeltrace/graph/component-class-source-const.h \
162 babeltrace/graph/component-class-source.h \
163 babeltrace/graph/component-class.h \
164 babeltrace/graph/component-const.h \
165 babeltrace/graph/component-filter-const.h \
166 babeltrace/graph/component-sink-const.h \
167 babeltrace/graph/component-source-const.h \
168 babeltrace/graph/connection-const.h \
169 babeltrace/graph/graph-const.h \
170 babeltrace/graph/graph.h \
171 babeltrace/graph/notification-const.h \
172 babeltrace/graph/notification-event-const.h \
173 babeltrace/graph/notification-event.h \
174 babeltrace/graph/notification-inactivity-const.h \
175 babeltrace/graph/notification-inactivity.h \
176 babeltrace/graph/notification-packet-const.h \
177 babeltrace/graph/notification-packet.h \
178 babeltrace/graph/notification-stream-const.h \
179 babeltrace/graph/notification-stream.h \
180 babeltrace/graph/port-const.h \
181 babeltrace/graph/port-input-const.h \
182 babeltrace/graph/port-output-const.h \
183 babeltrace/graph/port-output-notification-iterator.h \
184 babeltrace/graph/query-executor-const.h \
185 babeltrace/graph/query-executor.h \
186 babeltrace/graph/self-component-class-filter.h \
187 babeltrace/graph/self-component-class-sink.h \
188 babeltrace/graph/self-component-class-source.h \
189 babeltrace/graph/self-component-filter.h \
190 babeltrace/graph/self-component-port-input-notification-iterator.h \
191 babeltrace/graph/self-component-port-input.h \
192 babeltrace/graph/self-component-port-output.h \
193 babeltrace/graph/self-component-port.h \
194 babeltrace/graph/self-component-sink.h \
195 babeltrace/graph/self-component-source.h \
196 babeltrace/graph/self-component.h \
197 babeltrace/graph/self-notification-iterator.h
198
199 noinst_HEADERS = \
200 babeltrace/compat/stdlib-internal.h \
201 babeltrace/compat/fcntl-internal.h \
202 babeltrace/compat/glib-internal.h \
203 babeltrace/compat/uuid-internal.h \
204 babeltrace/compat/unistd-internal.h \
205 babeltrace/compat/stdio-internal.h \
206 babeltrace/compat/time-internal.h \
207 babeltrace/compat/utc-internal.h \
208 babeltrace/compat/memstream-internal.h \
209 babeltrace/compat/string-internal.h \
210 babeltrace/compat/limits-internal.h \
211 babeltrace/compat/mman-internal.h \
212 babeltrace/compat/socket-internal.h \
213 babeltrace/common-internal.h \
214 babeltrace/bitfield-internal.h \
215 babeltrace/object-internal.h \
216 babeltrace/object-pool-internal.h \
217 babeltrace/plugin/plugin-internal.h \
218 babeltrace/plugin/plugin-so-internal.h \
219 babeltrace/plugin/python-plugin-provider-internal.h \
220 babeltrace/assert-internal.h \
221 babeltrace/value-internal.h \
222 babeltrace/ctf-writer/attributes-internal.h \
223 babeltrace/ctf-writer/clock-class-internal.h \
224 babeltrace/ctf-writer/clock-internal.h \
225 babeltrace/ctf-writer/event-class-internal.h \
226 babeltrace/ctf-writer/event-internal.h \
227 babeltrace/ctf-writer/field-path-internal.h \
228 babeltrace/ctf-writer/fields-internal.h \
229 babeltrace/ctf-writer/field-types-internal.h \
230 babeltrace/ctf-writer/field-wrapper-internal.h \
231 babeltrace/ctf-writer/functor-internal.h \
232 babeltrace/ctf-writer/resolve-internal.h \
233 babeltrace/ctf-writer/serialize-internal.h \
234 babeltrace/ctf-writer/stream-class-internal.h \
235 babeltrace/ctf-writer/stream-internal.h \
236 babeltrace/ctf-writer/trace-internal.h \
237 babeltrace/ctf-writer/utils-internal.h \
238 babeltrace/ctf-writer/validation-internal.h \
239 babeltrace/ctf-writer/visitor-internal.h \
240 babeltrace/ctf-writer/writer-internal.h \
241 babeltrace/mmap-align-internal.h \
242 babeltrace/align-internal.h \
243 babeltrace/logging-internal.h \
244 babeltrace/endian-internal.h \
245 babeltrace/trace-ir/attributes-internal.h \
246 babeltrace/trace-ir/clock-class-internal.h \
247 babeltrace/trace-ir/clock-value-internal.h \
248 babeltrace/trace-ir/clock-value-set-internal.h \
249 babeltrace/trace-ir/event-class-internal.h \
250 babeltrace/trace-ir/event-internal.h \
251 babeltrace/trace-ir/field-class-internal.h \
252 babeltrace/trace-ir/field-path-internal.h \
253 babeltrace/trace-ir/field-internal.h \
254 babeltrace/trace-ir/field-wrapper-internal.h \
255 babeltrace/trace-ir/packet-internal.h \
256 babeltrace/trace-ir/resolve-field-path-internal.h \
257 babeltrace/trace-ir/stream-class-internal.h \
258 babeltrace/trace-ir/stream-internal.h \
259 babeltrace/trace-ir/trace-internal.h \
260 babeltrace/trace-ir/utils-internal.h \
261 babeltrace/prio-heap-internal.h \
262 babeltrace/lib-logging-internal.h \
263 babeltrace/compiler-internal.h \
264 babeltrace/babeltrace-internal.h \
265 babeltrace/assert-pre-internal.h \
266 babeltrace/graph/component-class-internal.h \
267 babeltrace/graph/component-class-sink-colander-internal.h \
268 babeltrace/graph/component-filter-internal.h \
269 babeltrace/graph/component-internal.h \
270 babeltrace/graph/component-sink-internal.h \
271 babeltrace/graph/component-source-internal.h \
272 babeltrace/graph/connection-internal.h \
273 babeltrace/graph/graph-internal.h \
274 babeltrace/graph/notification-event-internal.h \
275 babeltrace/graph/notification-inactivity-internal.h \
276 babeltrace/graph/notification-internal.h \
277 babeltrace/graph/notification-iterator-internal.h \
278 babeltrace/graph/notification-packet-internal.h \
279 babeltrace/graph/notification-stream-internal.h \
280 babeltrace/graph/port-internal.h \
281 babeltrace/graph/query-executor-internal.h \
282 babeltrace/list-internal.h \
283 version.h \
284 version.i
This page took 0.044211 seconds and 5 git commands to generate.