Fix compiler warnings
[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 side.c \
23 tracer.c
24
25 libside_la_LDFLAGS = -no-undefined -version-info $(SIDE_LIBRARY_VERSION)
26 libside_la_LIBADD = \
27 librcu.la \
28 libsmp.la \
29 $(RSEQ_LIBS)
30
31 noinst_PROGRAMS = test
32
33 test_SOURCES = \
34 test.c
35
36 test_LDADD = \
37 libside.la
38
39 pkgconfigdir = $(libdir)/pkgconfig
40 pkgconfig_DATA = libside.pc
This page took 0.032001 seconds and 5 git commands to generate.