From 09df41f556c436aff9e7d19548b997a46dc7cfef Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 7 Jun 2013 13:23:25 -0400 Subject: [PATCH] rcuja: add testpop to makefile Signed-off-by: Mathieu Desnoyers --- Makefile.am | 2 +- configure.ac | 1 + rcuja/Makefile.am | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 rcuja/Makefile.am diff --git a/Makefile.am b/Makefile.am index d58a483..0501e14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -7,7 +7,7 @@ INCLUDES = -I$(top_builddir)/urcu AM_LDFLAGS=-lpthread -version-info $(URCU_LIBRARY_VERSION) AM_CFLAGS=-Wall -SUBDIRS = . doc tests +SUBDIRS = . doc tests rcuja include_HEADERS = urcu.h urcu-bp.h urcu-call-rcu.h urcu-defer.h \ urcu-pointer.h urcu-qsbr.h urcu-flavor.h diff --git a/configure.ac b/configure.ac index 058be20..bb95f1c 100644 --- a/configure.ac +++ b/configure.ac @@ -292,6 +292,7 @@ AC_CONFIG_FILES([ doc/Makefile doc/examples/Makefile tests/Makefile + rcuja/Makefile liburcu.pc liburcu-bp.pc liburcu-cds.pc diff --git a/rcuja/Makefile.am b/rcuja/Makefile.am new file mode 100644 index 0000000..3c96d85 --- /dev/null +++ b/rcuja/Makefile.am @@ -0,0 +1,5 @@ +AM_CFLAGS=-I$(top_srcdir) -I$(top_builddir) -Wall + +noinst_PROGRAMS = testpop + +testpop_SOURCES = testpop.c -- 2.34.1