summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>2015-10-06 08:43:58 +0200
committerJohn Kacur <jkacur@redhat.com>2015-10-06 11:27:09 +0200
commit6f3c1ba9e8403cff6ca12351c43bde68e0fbca25 (patch)
treea131eb4bc80beabcba287050280dc7cebd4df09e
parentd8795af232faee91f409d7a9a7a0002396e167c7 (diff)
downloadrt-tests-6f3c1ba9e8403cff6ca12351c43bde68e0fbca25.tar.gz
drop compiling without NPTL support
all programs apart from sendme use pthreads so NPTL=no is hardly useful any more. Signed-off-by: John Kacur <jkacur@redhat.com>
-rw-r--r--Makefile19
1 files changed, 11 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index ace2c80..f64b23f 100644
--- a/Makefile
+++ b/Makefile
@@ -4,14 +4,17 @@ AR=$(CROSS_COMPILE)ar
OBJDIR = bld
-HAVE_NPTL ?= yes
-
-ifeq ($(HAVE_NPTL),yes)
-sources = cyclictest.c pi_stress.c pip_stress.c pmqtest.c rt-migrate-test.c
-endif
-
-sources += signaltest.c ptsematest.c sigwaittest.c svsematest.c sendme.c \
- hackbench.c
+sources = cyclictest.c \
+ hackbench.c \
+ pip_stress.c \
+ pi_stress.c \
+ pmqtest.c \
+ ptsematest.c \
+ rt-migrate-test.c \
+ sendme.c \
+ signaltest.c \
+ sigwaittest.c \
+ svsematest.c
TARGETS = $(sources:.c=)