Commit | Line | Data |
---|---|---|
6941b8e8 | 1 | # Core API |
9ffc0257 | 2 | babeltraceincludedir = "$(includedir)/babeltrace" |
0ec662bd JD |
3 | babeltraceinclude_HEADERS = \ |
4 | babeltrace/babeltrace.h \ | |
83509119 | 5 | babeltrace/values.h \ |
beb0fb75 | 6 | babeltrace/ref.h \ |
7a6224c4 | 7 | babeltrace/logging.h \ |
c55a9f58 PP |
8 | babeltrace/version.h \ |
9 | babeltrace/types.h | |
0ec662bd | 10 | |
6941b8e8 | 11 | # Legacy API (for CTF writer) |
9ffc0257 | 12 | babeltracectfincludedir = "$(includedir)/babeltrace/ctf" |
64a35d1b | 13 | babeltracectfinclude_HEADERS = \ |
dc3fffef | 14 | babeltrace/ctf/events.h |
273b65be | 15 | |
6941b8e8 | 16 | # CTF writer API |
9ffc0257 | 17 | babeltracectfwriterincludedir = "$(includedir)/babeltrace/ctf-writer" |
273b65be | 18 | babeltracectfwriterinclude_HEADERS = \ |
46bd0f2b JG |
19 | babeltrace/ctf-writer/clock.h \ |
20 | babeltrace/ctf-writer/writer.h \ | |
21 | babeltrace/ctf-writer/event-fields.h \ | |
22 | babeltrace/ctf-writer/event-types.h \ | |
23 | babeltrace/ctf-writer/event.h \ | |
adc315b8 JG |
24 | babeltrace/ctf-writer/stream.h \ |
25 | babeltrace/ctf-writer/stream-class.h | |
26 | ||
6941b8e8 | 27 | # CTF IR API |
9ffc0257 | 28 | babeltracectfirincludedir = "$(includedir)/babeltrace/ctf-ir" |
adc315b8 | 29 | babeltracectfirinclude_HEADERS = \ |
ac0c6bdd | 30 | babeltrace/ctf-ir/clock-class.h \ |
2e33ac5a PP |
31 | babeltrace/ctf-ir/fields.h \ |
32 | babeltrace/ctf-ir/field-types.h \ | |
adc315b8 | 33 | babeltrace/ctf-ir/event.h \ |
272df73e | 34 | babeltrace/ctf-ir/event-class.h \ |
b011f6b0 | 35 | babeltrace/ctf-ir/field-path.h \ |
3f043b05 | 36 | babeltrace/ctf-ir/stream.h \ |
f79cf0f0 | 37 | babeltrace/ctf-ir/packet.h \ |
bc37ae52 | 38 | babeltrace/ctf-ir/stream-class.h \ |
654c1444 | 39 | babeltrace/ctf-ir/trace.h \ |
8bf65fbd JG |
40 | babeltrace/ctf-ir/utils.h \ |
41 | babeltrace/ctf-ir/visitor.h | |
70bd0a12 | 42 | |
6941b8e8 | 43 | # Plugin and plugin development API |
9ffc0257 | 44 | babeltracepluginincludedir = "$(includedir)/babeltrace/plugin" |
6ee873c6 JG |
45 | babeltraceplugininclude_HEADERS = \ |
46 | babeltrace/plugin/plugin.h \ | |
33b34c43 PP |
47 | babeltrace/plugin/plugin-dev.h |
48 | ||
6941b8e8 | 49 | # Graph, component, and notification API |
9ffc0257 | 50 | babeltracegraphincludedir = "$(includedir)/babeltrace/graph" |
b2e0c907 | 51 | babeltracegraphinclude_HEADERS = \ |
8c0b8894 | 52 | babeltrace/graph/clock-class-priority-map.h \ |
b2e0c907 PP |
53 | babeltrace/graph/component-class-filter.h \ |
54 | babeltrace/graph/component-class-sink.h \ | |
55 | babeltrace/graph/component-class-source.h \ | |
56 | babeltrace/graph/component-class.h \ | |
57 | babeltrace/graph/component-filter.h \ | |
58 | babeltrace/graph/component-sink.h \ | |
59 | babeltrace/graph/component-source.h \ | |
cc469c42 | 60 | babeltrace/graph/component-status.h \ |
b2e0c907 PP |
61 | babeltrace/graph/component.h \ |
62 | babeltrace/graph/connection.h \ | |
63 | babeltrace/graph/graph.h \ | |
2ec84d26 PP |
64 | babeltrace/graph/notification-discarded-events.h \ |
65 | babeltrace/graph/notification-discarded-packets.h \ | |
b2e0c907 PP |
66 | babeltrace/graph/notification-event.h \ |
67 | babeltrace/graph/notification-heap.h \ | |
ece3fb0f | 68 | babeltrace/graph/notification-inactivity.h \ |
b2e0c907 PP |
69 | babeltrace/graph/notification-iterator.h \ |
70 | babeltrace/graph/notification.h \ | |
71 | babeltrace/graph/notification-packet.h \ | |
b2e0c907 PP |
72 | babeltrace/graph/notification-stream.h \ |
73 | babeltrace/graph/port.h \ | |
74 | babeltrace/graph/private-component-filter.h \ | |
75 | babeltrace/graph/private-component-sink.h \ | |
76 | babeltrace/graph/private-component-source.h \ | |
77 | babeltrace/graph/private-component.h \ | |
78 | babeltrace/graph/private-connection.h \ | |
79 | babeltrace/graph/private-notification-iterator.h \ | |
80 | babeltrace/graph/private-port.h | |
6ee873c6 | 81 | |
e92927d1 | 82 | noinst_HEADERS = \ |
3d9990ac | 83 | babeltrace/align-internal.h \ |
70bd0a12 | 84 | babeltrace/babeltrace-internal.h \ |
3d9990ac | 85 | babeltrace/bitfield-internal.h \ |
1670bffd | 86 | babeltrace/common-internal.h \ |
beb0fb75 PP |
87 | babeltrace/compat/fcntl-internal.h \ |
88 | babeltrace/compat/glib-internal.h \ | |
89 | babeltrace/compat/limits-internal.h \ | |
90 | babeltrace/compat/memstream-internal.h \ | |
91 | babeltrace/compat/mman-internal.h \ | |
1cb3cdd7 | 92 | babeltrace/compat/socket-internal.h \ |
beb0fb75 PP |
93 | babeltrace/compat/stdio-internal.h \ |
94 | babeltrace/compat/stdlib-internal.h \ | |
95 | babeltrace/compat/string-internal.h \ | |
58a2480d | 96 | babeltrace/compat/time-internal.h \ |
108e5a1e | 97 | babeltrace/compat/unistd-internal.h \ |
beb0fb75 | 98 | babeltrace/compat/utc-internal.h \ |
9313669d | 99 | babeltrace/compat/utsname-internal.h \ |
beb0fb75 | 100 | babeltrace/compat/uuid-internal.h \ |
3d9990ac | 101 | babeltrace/compiler-internal.h \ |
44e0a4f5 | 102 | babeltrace/ctf-ir/attributes-internal.h \ |
beb0fb75 | 103 | babeltrace/ctf-ir/clock-class-internal.h \ |
272df73e | 104 | babeltrace/ctf-ir/event-class-internal.h \ |
beb0fb75 | 105 | babeltrace/ctf-ir/event-internal.h \ |
b011f6b0 | 106 | babeltrace/ctf-ir/field-path-internal.h \ |
beb0fb75 PP |
107 | babeltrace/ctf-ir/field-types-internal.h \ |
108 | babeltrace/ctf-ir/fields-internal.h \ | |
109 | babeltrace/ctf-ir/packet-internal.h \ | |
09840de5 | 110 | babeltrace/ctf-ir/resolve-internal.h \ |
adc315b8 | 111 | babeltrace/ctf-ir/stream-class-internal.h \ |
3f043b05 | 112 | babeltrace/ctf-ir/stream-internal.h \ |
daf01357 | 113 | babeltrace/ctf-ir/trace-internal.h \ |
09840de5 | 114 | babeltrace/ctf-ir/validation-internal.h \ |
8bf65fbd | 115 | babeltrace/ctf-ir/visitor-internal.h \ |
ac0c6bdd | 116 | babeltrace/ctf-writer/clock-internal.h \ |
273b65be | 117 | babeltrace/ctf-writer/functor-internal.h \ |
beb0fb75 PP |
118 | babeltrace/ctf-writer/serialize-internal.h \ |
119 | babeltrace/ctf-writer/writer-internal.h \ | |
3d9990ac | 120 | babeltrace/endian-internal.h \ |
beb0fb75 | 121 | babeltrace/graph/clock-class-priority-map-internal.h \ |
b2e0c907 | 122 | babeltrace/graph/component-class-internal.h \ |
b2e0c907 | 123 | babeltrace/graph/component-filter-internal.h \ |
beb0fb75 | 124 | babeltrace/graph/component-internal.h \ |
b2e0c907 PP |
125 | babeltrace/graph/component-sink-internal.h \ |
126 | babeltrace/graph/component-source-internal.h \ | |
beb0fb75 PP |
127 | babeltrace/graph/connection-internal.h \ |
128 | babeltrace/graph/graph-internal.h \ | |
2ec84d26 | 129 | babeltrace/graph/notification-discarded-elements-internal.h \ |
b2e0c907 | 130 | babeltrace/graph/notification-event-internal.h \ |
beb0fb75 | 131 | babeltrace/graph/notification-heap-internal.h \ |
ece3fb0f | 132 | babeltrace/graph/notification-inactivity-internal.h \ |
b2e0c907 | 133 | babeltrace/graph/notification-internal.h \ |
beb0fb75 | 134 | babeltrace/graph/notification-iterator-internal.h \ |
b2e0c907 PP |
135 | babeltrace/graph/notification-packet-internal.h \ |
136 | babeltrace/graph/notification-stream-internal.h \ | |
beb0fb75 PP |
137 | babeltrace/graph/port-internal.h \ |
138 | babeltrace/lib-logging-internal.h \ | |
45ff8fe4 | 139 | babeltrace/list-internal.h \ |
beb0fb75 PP |
140 | babeltrace/logging-internal.h \ |
141 | babeltrace/mmap-align-internal.h \ | |
142 | babeltrace/object-internal.h \ | |
143 | babeltrace/plugin/plugin-internal.h \ | |
144 | babeltrace/plugin/plugin-so-internal.h \ | |
145 | babeltrace/prio-heap-internal.h \ | |
c4628760 PP |
146 | babeltrace/ref-internal.h \ |
147 | babeltrace/values-internal.h |