mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
721e65a1d5
This mechanism isn't perfect, and sometimes it will guess wrong, but it will help our automation.
20 lines
352 B
Plaintext
20 lines
352 B
Plaintext
|
|
noinst_LIBRARIES += \
|
|
src/lib/libtor-trace.a
|
|
|
|
# ADD_C_FILE: INSERT HEADERS HERE.
|
|
TRACEHEADERS = \
|
|
src/lib/trace/trace.h \
|
|
src/lib/trace/events.h
|
|
|
|
if USE_EVENT_TRACING_DEBUG
|
|
TRACEHEADERS += \
|
|
src/lib/trace/debug.h
|
|
endif
|
|
|
|
# ADD_C_FILE: INSERT SOURCES HERE.
|
|
src_lib_libtor_trace_a_SOURCES = \
|
|
src/lib/trace/trace.c
|
|
|
|
noinst_HEADERS+= $(TRACEHEADERS)
|