X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=include%2FMakefile.am;h=f929321067964b541afa5f164b470c5cae86f973;hb=9ffc0257721b043158a502d3fcd7eb275630a95b;hp=bc1621ca4178eeb4b01c923aa71cf3d927b28ab7;hpb=fb2dcc52d2d351c4fb46878414f51d2cdecdfc6f;p=babeltrace.git diff --git a/include/Makefile.am b/include/Makefile.am index bc1621ca..f9293210 100644 --- a/include/Makefile.am +++ b/include/Makefile.am @@ -1,19 +1,20 @@ +# Core API +babeltraceincludedir = "$(includedir)/babeltrace" babeltraceinclude_HEADERS = \ babeltrace/babeltrace.h \ - babeltrace/format.h \ - babeltrace/context.h \ - babeltrace/iterator.h \ - babeltrace/trace-handle.h \ - babeltrace/list.h \ - babeltrace/clock-types.h \ babeltrace/values.h \ - babeltrace/ref.h + babeltrace/ref.h \ + babeltrace/logging.h \ + babeltrace/version.h \ + babeltrace/types.h +# Legacy API (for CTF writer) +babeltracectfincludedir = "$(includedir)/babeltrace/ctf" babeltracectfinclude_HEADERS = \ - babeltrace/ctf/events.h \ - babeltrace/ctf/callbacks.h \ - babeltrace/ctf/iterator.h + babeltrace/ctf/events.h +# CTF writer API +babeltracectfwriterincludedir = "$(includedir)/babeltrace/ctf-writer" babeltracectfwriterinclude_HEADERS = \ babeltrace/ctf-writer/clock.h \ babeltrace/ctf-writer/writer.h \ @@ -23,8 +24,10 @@ babeltracectfwriterinclude_HEADERS = \ babeltrace/ctf-writer/stream.h \ babeltrace/ctf-writer/stream-class.h +# CTF IR API +babeltracectfirincludedir = "$(includedir)/babeltrace/ctf-ir" babeltracectfirinclude_HEADERS = \ - babeltrace/ctf-ir/clock.h \ + babeltrace/ctf-ir/clock-class.h \ babeltrace/ctf-ir/fields.h \ babeltrace/ctf-ir/field-types.h \ babeltrace/ctf-ir/event.h \ @@ -34,89 +37,111 @@ babeltracectfirinclude_HEADERS = \ babeltrace/ctf-ir/packet.h \ babeltrace/ctf-ir/stream-class.h \ babeltrace/ctf-ir/trace.h \ - babeltrace/ctf-ir/utils.h + babeltrace/ctf-ir/utils.h \ + babeltrace/ctf-ir/visitor.h +# Plugin and plugin development API +babeltracepluginincludedir = "$(includedir)/babeltrace/plugin" babeltraceplugininclude_HEADERS = \ babeltrace/plugin/plugin.h \ - babeltrace/plugin/component.h \ - babeltrace/plugin/component-factory.h \ - babeltrace/plugin/source.h \ - babeltrace/plugin/sink.h \ - babeltrace/plugin/filter.h \ - babeltrace/plugin/plugin-system.h \ - babeltrace/plugin/notification/eot.h \ - babeltrace/plugin/notification/notification.h \ - babeltrace/plugin/notification/event.h \ - babeltrace/plugin/notification/iterator.h \ - babeltrace/plugin/notification/notification.h \ - babeltrace/plugin/notification/packet.h + babeltrace/plugin/plugin-dev.h + +# Graph, component, and notification API +babeltracegraphincludedir = "$(includedir)/babeltrace/graph" +babeltracegraphinclude_HEADERS = \ + babeltrace/graph/clock-class-priority-map.h \ + babeltrace/graph/component-class-filter.h \ + babeltrace/graph/component-class-sink.h \ + babeltrace/graph/component-class-source.h \ + babeltrace/graph/component-class.h \ + babeltrace/graph/component-filter.h \ + babeltrace/graph/component-sink.h \ + babeltrace/graph/component-source.h \ + babeltrace/graph/component-status.h \ + babeltrace/graph/component.h \ + babeltrace/graph/connection.h \ + babeltrace/graph/graph.h \ + babeltrace/graph/notification-discarded-events.h \ + babeltrace/graph/notification-discarded-packets.h \ + babeltrace/graph/notification-event.h \ + babeltrace/graph/notification-heap.h \ + babeltrace/graph/notification-inactivity.h \ + babeltrace/graph/notification-iterator.h \ + babeltrace/graph/notification.h \ + babeltrace/graph/notification-packet.h \ + babeltrace/graph/notification-stream.h \ + babeltrace/graph/port.h \ + babeltrace/graph/private-component-filter.h \ + babeltrace/graph/private-component-sink.h \ + babeltrace/graph/private-component-source.h \ + babeltrace/graph/private-component.h \ + babeltrace/graph/private-connection.h \ + babeltrace/graph/private-notification-iterator.h \ + babeltrace/graph/private-port.h noinst_HEADERS = \ - babeltrace/align.h \ + babeltrace/align-internal.h \ babeltrace/babeltrace-internal.h \ - babeltrace/bitfield.h \ - babeltrace/clock-internal.h \ - babeltrace/compiler.h \ - babeltrace/context-internal.h \ - babeltrace/format-internal.h \ - babeltrace/iterator-internal.h \ - babeltrace/trace-collection.h \ - babeltrace/prio_heap.h \ - babeltrace/ref-internal.h \ - babeltrace/types.h \ - babeltrace/object-internal.h \ - babeltrace/crc32.h \ - babeltrace/debug-info.h \ - babeltrace/trace-debug-info.h \ - babeltrace/dwarf.h \ - babeltrace/bin-info.h \ - babeltrace/utils.h \ - babeltrace/ctf-ir/metadata.h \ - babeltrace/ctf/events-internal.h \ - babeltrace/ctf/metadata.h \ - babeltrace/ctf-text/types.h \ - babeltrace/ctf/types.h \ - babeltrace/ctf/callbacks-internal.h \ - babeltrace/ctf/ctf-index.h \ - babeltrace/ctf-writer/writer-internal.h \ + babeltrace/bitfield-internal.h \ + babeltrace/common-internal.h \ + babeltrace/compat/fcntl-internal.h \ + babeltrace/compat/glib-internal.h \ + babeltrace/compat/limits-internal.h \ + babeltrace/compat/memstream-internal.h \ + babeltrace/compat/mman-internal.h \ + babeltrace/compat/socket-internal.h \ + babeltrace/compat/stdio-internal.h \ + babeltrace/compat/stdlib-internal.h \ + babeltrace/compat/string-internal.h \ + babeltrace/compat/time-internal.h \ + babeltrace/compat/unistd-internal.h \ + babeltrace/compat/utc-internal.h \ + babeltrace/compat/utsname-internal.h \ + babeltrace/compat/uuid-internal.h \ + babeltrace/compiler-internal.h \ babeltrace/ctf-ir/attributes-internal.h \ - babeltrace/ctf-ir/field-types-internal.h \ - babeltrace/ctf-ir/fields-internal.h \ - babeltrace/ctf-ir/event-internal.h \ + babeltrace/ctf-ir/clock-class-internal.h \ babeltrace/ctf-ir/event-class-internal.h \ + babeltrace/ctf-ir/event-internal.h \ babeltrace/ctf-ir/field-path-internal.h \ - babeltrace/ctf-ir/clock-internal.h \ + babeltrace/ctf-ir/field-types-internal.h \ + babeltrace/ctf-ir/fields-internal.h \ + babeltrace/ctf-ir/packet-internal.h \ babeltrace/ctf-ir/resolve-internal.h \ babeltrace/ctf-ir/stream-class-internal.h \ babeltrace/ctf-ir/stream-internal.h \ - babeltrace/ctf-ir/packet-internal.h \ babeltrace/ctf-ir/trace-internal.h \ babeltrace/ctf-ir/validation-internal.h \ + babeltrace/ctf-ir/visitor-internal.h \ + babeltrace/ctf-writer/clock-internal.h \ babeltrace/ctf-writer/functor-internal.h \ - babeltrace/trace-handle-internal.h \ - babeltrace/compat/uuid.h \ - babeltrace/compat/memstream.h \ - babeltrace/compat/string.h \ - babeltrace/compat/utc.h \ - babeltrace/compat/limits.h \ - babeltrace/compat/glib.h \ - babeltrace/compat/send.h \ - babeltrace/compat/fcntl.h \ - babeltrace/compat/stdlib.h \ - babeltrace/compat/dirent.h \ - babeltrace/compat/stdio.h \ - babeltrace/compat/mman.h \ - babeltrace/endian.h \ - babeltrace/mmap-align.h \ - babeltrace/plugin/component-factory-internal.h \ - babeltrace/plugin/component-internal.h \ - babeltrace/plugin/component-class-internal.h \ + babeltrace/ctf-writer/serialize-internal.h \ + babeltrace/ctf-writer/writer-internal.h \ + babeltrace/endian-internal.h \ + babeltrace/graph/clock-class-priority-map-internal.h \ + babeltrace/graph/component-class-internal.h \ + babeltrace/graph/component-filter-internal.h \ + babeltrace/graph/component-internal.h \ + babeltrace/graph/component-sink-internal.h \ + babeltrace/graph/component-source-internal.h \ + babeltrace/graph/connection-internal.h \ + babeltrace/graph/graph-internal.h \ + babeltrace/graph/notification-discarded-elements-internal.h \ + babeltrace/graph/notification-event-internal.h \ + babeltrace/graph/notification-heap-internal.h \ + babeltrace/graph/notification-inactivity-internal.h \ + babeltrace/graph/notification-internal.h \ + babeltrace/graph/notification-iterator-internal.h \ + babeltrace/graph/notification-packet-internal.h \ + babeltrace/graph/notification-stream-internal.h \ + babeltrace/graph/port-internal.h \ + babeltrace/lib-logging-internal.h \ + babeltrace/list-internal.h \ + babeltrace/logging-internal.h \ + babeltrace/mmap-align-internal.h \ + babeltrace/object-internal.h \ babeltrace/plugin/plugin-internal.h \ - babeltrace/plugin/filter-internal.h \ - babeltrace/plugin/sink-internal.h \ - babeltrace/plugin/source-internal.h \ - babeltrace/plugin/notification/eot-internal.h \ - babeltrace/plugin/notification/event-internal.h \ - babeltrace/plugin/notification/iterator-internal.h \ - babeltrace/plugin/notification/notification-internal.h \ - babeltrace/plugin/notification/packet-internal.h + babeltrace/plugin/plugin-so-internal.h \ + babeltrace/prio-heap-internal.h \ + babeltrace/ref-internal.h \ + babeltrace/values-internal.h