mpsc_queue: Make tests more verbose in case of failure
[libnbds.git] / src / Makefile.am
blob1dc6e6578a227af632642292b451b4dea7335b6e
1 # libnbds
3 # Copyright (C) 2013-2014 PaweÅ‚ Dziepak
5 AUTOMAKE_OPTIONS = 1.4 foreign
7 CFLAGS += -Wall -Wextra -Werror -pedantic --std=gnu99
9 LIBRARY_VERSION = 1:0:0
11 lib_LTLIBRARIES = libnbds.la
13 libnbds_la_SOURCES =    \
14                                 mpsc_queue.c    \
15                                 spmc_queue.c    \
16                                 spsc_queue.c
18 noinst_HEADERS =        \
19                         atomic.h                \
20                         barriers.h
22 pkginclude_HEADERS =    \
23                                 mpsc_queue.h    \
24                                 spmc_queue.h    \
25                                 spsc_queue.h
27 libnbds_la_LDFLAGS = -version-info $(LIBRARY_VERSION)
28 libnbds_la_CFLAGS =