License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6-block.git] / tools / testing / selftests / futex / functional / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
33ca2248 2INCLUDES := -I../include -I../../
2aa8470f
DH
3CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES)
4LDFLAGS := $(LDFLAGS) -pthread -lrt
5
99c21f6d
SH
6HEADERS := \
7 ../include/futextest.h \
8 ../include/atomic.h \
9 ../include/logging.h
88baa78d 10TEST_GEN_FILES := \
2aa8470f
DH
11 futex_wait_timeout \
12 futex_wait_wouldblock \
13 futex_requeue_pi \
14 futex_requeue_pi_signal_restart \
15 futex_requeue_pi_mismatched_ops \
16 futex_wait_uninitialized_heap \
17 futex_wait_private_mapped_file
18
88baa78d 19TEST_PROGS := run.sh
2aa8470f 20
9705315b 21include ../../lib.mk
2aa8470f 22
88baa78d 23$(TEST_GEN_FILES): $(HEADERS)