irqchip: Fix dependencies for archs w/o HAS_IOMEM
[linux/fpc-iii.git] / tools / testing / selftests / futex / functional / Makefile
blob9d6b75ef7b5d679a698862b2406b619e633e8672
1 INCLUDES := -I../include -I../../
2 CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
3 LDFLAGS := $(LDFLAGS) -pthread -lrt
5 HEADERS := ../include/futextest.h
6 TARGETS := \
7 futex_wait_timeout \
8 futex_wait_wouldblock \
9 futex_requeue_pi \
10 futex_requeue_pi_signal_restart \
11 futex_requeue_pi_mismatched_ops \
12 futex_wait_uninitialized_heap \
13 futex_wait_private_mapped_file
15 TEST_PROGS := $(TARGETS) run.sh
17 .PHONY: all clean
18 all: $(TARGETS)
20 $(TARGETS): $(HEADERS)
22 include ../../lib.mk
24 clean:
25 rm -f $(TARGETS)