]> Git Repo - linux.git/blob - tools/testing/selftests/futex/functional/Makefile
Merge branch 'i2c-mux/for-current' of https://github.com/peda-r/i2c-mux into i2c...
[linux.git] / tools / testing / selftests / futex / functional / Makefile
1 INCLUDES := -I../include -I../../
2 CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
3 LDFLAGS := $(LDFLAGS) -pthread -lrt
4
5 HEADERS := \
6         ../include/futextest.h \
7         ../include/atomic.h \
8         ../include/logging.h
9 TEST_GEN_FILES := \
10         futex_wait_timeout \
11         futex_wait_wouldblock \
12         futex_requeue_pi \
13         futex_requeue_pi_signal_restart \
14         futex_requeue_pi_mismatched_ops \
15         futex_wait_uninitialized_heap \
16         futex_wait_private_mapped_file
17
18 TEST_PROGS := run.sh
19
20 include ../../lib.mk
21
22 $(TEST_GEN_FILES): $(HEADERS)
This page took 0.035262 seconds and 4 git commands to generate.