aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Kbuild
diff options
context:
space:
mode:
Diffstat (limited to 'Kbuild')
-rw-r--r--Kbuild12
1 files changed, 12 insertions, 0 deletions
diff --git a/Kbuild b/Kbuild
index a07bbd62f052..8637fd14135f 100644
--- a/Kbuild
+++ b/Kbuild
@@ -50,5 +50,17 @@ quiet_cmd_syscalls = CALL $<
missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
$(call cmd,syscalls)
+#####
+# Check atomic headers are up-to-date
+
+always += old-atomics
+targets += old-atomics
+
+quiet_cmd_atomics = CALL $<
+ cmd_atomics = $(CONFIG_SHELL) $<
+
+old-atomics: scripts/atomic/check-atomics.sh FORCE
+ $(call cmd,atomics)
+
# Keep these three files during make clean
no-clean-files := $(bounds-file) $(offsets-file) $(timeconst-file)