From: Stafford Horne Date: Wed, 11 Jan 2017 15:11:16 +0000 (+0900) Subject: selftests/futex: Add headers to makefile dependencies X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=99c21f6d004d07667d7345e56e44a5b805e1dfa9;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git selftests/futex: Add headers to makefile dependencies The futex makefile did not contain dependencies for all headers, so if we make changes to logging.h rebuild will not happen. Add headers to fix it up. Signed-off-by: Stafford Horne Signed-off-by: Shuah Khan --- diff --git a/tools/testing/selftests/futex/functional/Makefile b/tools/testing/selftests/futex/functional/Makefile index ac35782ce1e5..a648e7a6cbc3 100644 --- a/tools/testing/selftests/futex/functional/Makefile +++ b/tools/testing/selftests/futex/functional/Makefile @@ -2,7 +2,10 @@ INCLUDES := -I../include -I../../ CFLAGS := $(CFLAGS) -g -O2 -Wall -D_GNU_SOURCE -pthread $(INCLUDES) LDFLAGS := $(LDFLAGS) -pthread -lrt -HEADERS := ../include/futextest.h +HEADERS := \ + ../include/futextest.h \ + ../include/atomic.h \ + ../include/logging.h TEST_GEN_FILES := \ futex_wait_timeout \ futex_wait_wouldblock \