Add autotools build system
[libside.git] / src / Makefile.am
CommitLineData
82abd52d
MJ
1# SPDX-License-Identifier: MIT
2# SPDX-FileCopyrightText: 2022 EfficiOS Inc.
3
4# Internal convenience libraries
5noinst_LTLIBRARIES = \
6 librcu.la \
7 libsmp.la
8
9librcu_la_SOURCES = \
10 rcu.c \
11 rcu.h
12
13libsmp_la_SOURCES = \
14 smp.c \
15 smp.h
16
17# Public libaries
18lib_LTLIBRARIES = libside.la
19
20libside_la_SOURCES = \
21 list.h \
22 side.c \
23 tracer.c \
24 tracer.h
25
26libside_la_LDFLAGS = -no-undefined -version-info $(SIDE_LIBRARY_VERSION)
27libside_la_LIBADD = \
28 librcu.la \
29 libsmp.la \
30 $(RSEQ_LIBS)
31
32noinst_PROGRAMS = test
33
34test_SOURCES = \
35 test.c
36
37test_LDADD = \
38 libside.la
39
40pkgconfigdir = $(libdir)/pkgconfig
41pkgconfig_DATA = libside.pc
This page took 0.025727 seconds and 4 git commands to generate.