include.am 439 B

1234567891011121314151617181920
  1. # Include the src/ so we can use the trace/events.h statement when including
  2. # any file in that directory.
  3. AM_CPPFLAGS += -I$(srcdir)/src
  4. noinst_LIBRARIES += \
  5. src/trace/libor-trace.a
  6. LIBOR_TRACE_A_SOURCES =
  7. TRACEHEADERS = \
  8. src/trace/events.h
  9. if USE_EVENT_TRACING_DEBUG
  10. TRACEHEADERS += \
  11. src/trace/debug.h
  12. endif
  13. # Library source files.
  14. src_trace_libor_trace_a_SOURCES = $(LIBOR_TRACE_A_SOURCES)
  15. noinst_HEADERS+= $(TRACEHEADERS)