Handle statedump agent thread state across fork
[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 compiler.h \
22 list.h \
23 rculist.h \
24 side.c \
25 tracer.c
26
27 libside_la_LDFLAGS = -no-undefined -version-info $(SIDE_LIBRARY_VERSION)
28 libside_la_LIBADD = \
29 librcu.la \
30 libsmp.la \
31 $(RSEQ_LIBS)
32
33 pkgconfigdir = $(libdir)/pkgconfig
34 pkgconfig_DATA = libside.pc
This page took 0.030531 seconds and 4 git commands to generate.