Use RCU for statedump
[libside.git] / src / Makefile.am
1 # SPDX-License-Identifier: MIT
2 # SPDX-FileCopyrightText: 2022 EfficiOS Inc.
3
4 # Internal convenience libraries
5 noinst_LTLIBRARIES = \
6 librcu.la \
7 libsmp.la
8
9 librcu_la_SOURCES = \
10 rcu.c \
11 rcu.h
12
13 libsmp_la_SOURCES = \
14 smp.c \
15 smp.h
16
17 # Public libaries
18 lib_LTLIBRARIES = libside.la
19
20 libside_la_SOURCES = \
21 list.h \
22 rculist.h \
23 side.c \
24 tracer.c
25
26 libside_la_LDFLAGS = -no-undefined -version-info $(SIDE_LIBRARY_VERSION)
27 libside_la_LIBADD = \
28 librcu.la \
29 libsmp.la \
30 $(RSEQ_LIBS)
31
32 pkgconfigdir = $(libdir)/pkgconfig
33 pkgconfig_DATA = libside.pc
This page took 0.029647 seconds and 4 git commands to generate.