From 6f3c1ba9e8403cff6ca12351c43bde68e0fbca25 Mon Sep 17 00:00:00 2001 From: Uwe Kleine-König Date: Tue, 6 Oct 2015 08:43:58 +0200 Subject: 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 --- Makefile | 19 +++++++++++-------- 1 file 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=) -- cgit 1.2.3-korg