Fix: add missing do-on-cpu-insn.h to make dist
[librseq.git] / src / Makefile.am
1 # SPDX-License-Identifier: MIT
2 #
3 # Copyright (C) 2019 Michael Jeanson <mjeanson@efficios.com>
4 #
5
6 AM_CPPFLAGS += -I$(top_srcdir)/include -I$(top_builddir)/include
7
8 lib_LTLIBRARIES = librseq.la
9
10 librseq_la_SOURCES = \
11 rseq.c
12
13 if HAVE_DO_ON_CPU
14 librseq_la_SOURCES += \
15 cpu-op.c \
16 percpu-op.c \
17 do-on-cpu-insn.h
18 endif
19
20 librseq_la_LDFLAGS = -no-undefined -version-info $(RSEQ_LIBRARY_VERSION)
21
22 pkgconfigdir = $(libdir)/pkgconfig
23 pkgconfig_DATA = librseq.pc
This page took 0.032825 seconds and 5 git commands to generate.