Build system: implement REUSE with SPDX identifiers
[lttng-ust.git] / src / lib / lttng-ust / Makefile.am
index 5fcfb5f54ffcf1a568e19049c4e2e7558ae84192..30233d6e13f71ad2b842c4f58c535641346103fa 100644 (file)
@@ -1,26 +1,12 @@
+# SPDX-FileCopyrightText: 2023 EfficiOS, Inc
+#
 # SPDX-License-Identifier: LGPL-2.1-only
 
-AM_CFLAGS += -I$(srcdir) -fno-strict-aliasing
+AM_CFLAGS += -I$(srcdir)
 
-noinst_LTLIBRARIES = liblttng-ust-runtime.la liblttng-ust-support.la
+lib_LTLIBRARIES = liblttng-ust.la
 
-lib_LTLIBRARIES = liblttng-ust-tracepoint.la liblttng-ust.la
-
-liblttng_ust_tracepoint_la_SOURCES = \
-       tracepoint.c \
-       tracepoint-weak-test.c \
-       tracepoint-internal.h \
-       lttng-tracer-core.h
-
-liblttng_ust_tracepoint_la_LIBADD = \
-       $(top_builddir)/src/lib/lttng-ust-common/liblttng-ust-common.la \
-       $(top_builddir)/src/common/libcommon.la \
-       $(DL_LIBS)
-
-liblttng_ust_tracepoint_la_LDFLAGS = -no-undefined -version-info $(LTTNG_UST_LIBRARY_VERSION)
-liblttng_ust_tracepoint_la_CFLAGS = -DUST_COMPONENT="liblttng_ust_tracepoint" $(AM_CFLAGS)
-
-liblttng_ust_runtime_la_SOURCES = \
+liblttng_ust_la_SOURCES = \
        bytecode.h \
        lttng-ust-comm.c \
        lttng-ust-abi.c \
@@ -53,22 +39,20 @@ liblttng_ust_runtime_la_SOURCES = \
        lttng-context-vsgid.c \
        lttng-context.c \
        lttng-events.c \
-       lttng-ust-elf.c \
-       lttng-ust-elf.h \
        lttng-ust-statedump.c \
        lttng-ust-statedump.h \
        lttng-ust-statedump-provider.h \
+       futex.c \
+       futex.h \
        ust_lib.c \
        ust_lib.h \
        context-internal.h \
        context-provider-internal.h \
-       tracepoint-internal.h \
        events.h \
-       clock.h \
-       lttng-ust-uuid.h \
        tracef.c \
        lttng-ust-tracef-provider.h \
        tracelog.c \
+       tracelog-internal.h \
        lttng-ust-tracelog-provider.h \
        event-notifier-notification.c \
        rculfhash.c \
@@ -76,48 +60,28 @@ liblttng_ust_runtime_la_SOURCES = \
        rculfhash-internal.h \
        rculfhash-mm-chunk.c \
        rculfhash-mm-mmap.c \
-       rculfhash-mm-order.c
+       rculfhash-mm-order.c \
+       strerror.c \
+       lttng-tracer-core.h
 
 if HAVE_PERF_EVENT
-liblttng_ust_runtime_la_SOURCES += \
+liblttng_ust_la_SOURCES += \
        lttng-context-perf-counters.c \
        perf_event.h
 endif
 
-liblttng_ust_support_la_SOURCES = \
-       lttng-tracer.h \
-       lttng-tracer-core.h \
-       ust-core.c \
-       lttng-ust-dynamic-type.c \
-       lttng-rb-clients.h \
-       lttng-ring-buffer-client-template.h \
-       lttng-ring-buffer-client-discard.c \
-       lttng-ring-buffer-client-discard-rt.c \
-       lttng-ring-buffer-client-overwrite.c \
-       lttng-ring-buffer-client-overwrite-rt.c \
-       lttng-ring-buffer-metadata-client-template.h \
-       lttng-ring-buffer-metadata-client.c \
-       lttng-counter-client.h \
-       lttng-counter-client-percpu-32-modular.c \
-       lttng-counter-client-percpu-64-modular.c \
-       lttng-clock.c \
-       getcpu.c getcpu.h
-
-liblttng_ust_la_SOURCES =
-
 liblttng_ust_la_LDFLAGS = -no-undefined -version-info $(LTTNG_UST_LIBRARY_VERSION)
 
-liblttng_ust_support_la_LIBADD = \
-       $(top_builddir)/src/common/libringbuffer.la \
-       $(top_builddir)/src/common/libcounter.la
-
 liblttng_ust_la_LIBADD = \
-       -lrt \
-       $(top_builddir)/src/lib/lttng-ust-common/liblttng-ust-common.la \
+       $(top_builddir)/src/common/libringbuffer.la \
+       $(top_builddir)/src/common/libringbuffer-clients.la \
+       $(top_builddir)/src/common/libcounter.la \
+       $(top_builddir)/src/common/libcounter-clients.la \
        $(top_builddir)/src/common/libustcomm.la \
        $(top_builddir)/src/common/libcommon.la \
-       liblttng-ust-tracepoint.la \
-       liblttng-ust-runtime.la liblttng-ust-support.la \
+       $(top_builddir)/src/lib/lttng-ust-common/liblttng-ust-common.la \
+       $(top_builddir)/src/lib/lttng-ust-tracepoint/liblttng-ust-tracepoint.la \
+       -lrt \
        $(DL_LIBS)
 
 liblttng_ust_la_CFLAGS = -DUST_COMPONENT="liblttng_ust" $(AM_CFLAGS)
This page took 0.023923 seconds and 4 git commands to generate.