rculfhash: Documentation: clarify need for grace period before "re-using"
[urcu.git] / Makefile.am
1 ACLOCAL_AMFLAGS=-I m4
2
3 AM_CPPFLAGS = -I$(top_builddir)/urcu
4
5 #Add the -version-info directly here since we are only building
6 # library that use the version-info
7 AM_LDFLAGS=-version-info $(URCU_LIBRARY_VERSION)
8 if !LIBC_INCLUDES_PTHREAD
9 AM_LDFLAGS+=-lpthread
10 endif
11 if USE_CYGWIN
12 AM_LDFLAGS+=-no-undefined
13 endif
14 AM_CFLAGS=-Wall
15
16 SUBDIRS = . doc tests
17
18 include_HEADERS = urcu.h urcu-bp.h urcu-call-rcu.h urcu-defer.h \
19 urcu-pointer.h urcu-qsbr.h urcu-flavor.h
20 nobase_dist_include_HEADERS = urcu/compiler.h urcu/hlist.h urcu/list.h \
21 urcu/rculist.h urcu/rcuhlist.h urcu/system.h urcu/futex.h \
22 urcu/uatomic/generic.h urcu/arch/generic.h urcu/wfstack.h \
23 urcu/wfqueue.h urcu/rculfstack.h urcu/rculfqueue.h \
24 urcu/ref.h urcu/cds.h urcu/urcu_ref.h urcu/urcu-futex.h \
25 urcu/uatomic_arch.h urcu/rculfhash.h urcu/wfcqueue.h \
26 urcu/lfstack.h urcu/syscall-compat.h \
27 $(top_srcdir)/urcu/map/*.h \
28 $(top_srcdir)/urcu/static/*.h \
29 urcu/rand-compat.h \
30 urcu/tls-compat.h urcu/debug.h
31 nobase_nodist_include_HEADERS = urcu/arch.h urcu/uatomic.h urcu/config.h
32
33 dist_noinst_HEADERS = urcu-die.h urcu-wait.h compat-getcpu.h
34
35 EXTRA_DIST = $(top_srcdir)/urcu/arch/*.h $(top_srcdir)/urcu/uatomic/*.h \
36 gpl-2.0.txt lgpl-2.1.txt lgpl-relicensing.txt \
37 LICENSE compat_arch_x86.c \
38 urcu-call-rcu-impl.h urcu-defer-impl.h \
39 rculfhash-internal.h
40
41 if COMPAT_ARCH
42 COMPAT=compat_arch_@ARCHTYPE@.c
43 else
44 COMPAT=
45 endif
46
47 COMPAT+=compat_futex.c
48
49 RCULFHASH = rculfhash.c rculfhash-mm-order.c rculfhash-mm-chunk.c \
50 rculfhash-mm-mmap.c
51
52 lib_LTLIBRARIES = liburcu-common.la \
53 liburcu.la liburcu-qsbr.la \
54 liburcu-mb.la liburcu-signal.la liburcu-bp.la \
55 liburcu-cds.la
56
57 #
58 # liburcu-common contains wait-free queues (needed by call_rcu) as well
59 # as futex fallbacks.
60 #
61 liburcu_common_la_SOURCES = wfqueue.c wfcqueue.c wfstack.c $(COMPAT)
62
63 liburcu_la_SOURCES = urcu.c urcu-pointer.c $(COMPAT)
64 liburcu_la_LIBADD = liburcu-common.la
65
66 liburcu_qsbr_la_SOURCES = urcu-qsbr.c urcu-pointer.c $(COMPAT)
67 liburcu_qsbr_la_LIBADD = liburcu-common.la
68
69 liburcu_mb_la_SOURCES = urcu.c urcu-pointer.c $(COMPAT)
70 liburcu_mb_la_CFLAGS = -DRCU_MB
71 liburcu_mb_la_LIBADD = liburcu-common.la
72
73 liburcu_signal_la_SOURCES = urcu.c urcu-pointer.c $(COMPAT)
74 liburcu_signal_la_CFLAGS = -DRCU_SIGNAL
75 liburcu_signal_la_LIBADD = liburcu-common.la
76
77 liburcu_bp_la_SOURCES = urcu-bp.c urcu-pointer.c $(COMPAT)
78 liburcu_bp_la_LIBADD = liburcu-common.la
79
80 liburcu_cds_la_SOURCES = rculfqueue.c rculfstack.c lfstack.c \
81 $(RCULFHASH) $(COMPAT)
82 liburcu_cds_la_LIBADD = liburcu-common.la
83
84 pkgconfigdir = $(libdir)/pkgconfig
85 pkgconfig_DATA = liburcu-cds.pc liburcu.pc liburcu-bp.pc liburcu-qsbr.pc \
86 liburcu-signal.pc liburcu-mb.pc
87
88 dist_doc_DATA = README.md ChangeLog
89
90 dist_noinst_DATA = CodingStyle
91
92 .PHONY: short_bench long_bench regtest
93 short_bench:
94 cd tests && $(MAKE) $(AM_MAKEFLAGS) short_bench
95 long_bench:
96 cd tests && $(MAKE) $(AM_MAKEFLAGS) long_bench
97 regtest:
98 cd tests && $(MAKE) $(AM_MAKEFLAGS) regtest
This page took 0.031123 seconds and 4 git commands to generate.