aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'arch/powerpc/kernel/Makefile')
-rw-r--r--arch/powerpc/kernel/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile
index 9374bc9a2dd1..d9b377070caa 100644
--- a/arch/powerpc/kernel/Makefile
+++ b/arch/powerpc/kernel/Makefile
@@ -91,3 +91,13 @@ obj-$(CONFIG_PPC64) += $(obj64-y)
91 91
92extra-$(CONFIG_PPC_FPU) += fpu.o 92extra-$(CONFIG_PPC_FPU) += fpu.o
93extra-$(CONFIG_PPC64) += entry_64.o 93extra-$(CONFIG_PPC64) += entry_64.o
94
95extra-y += systbl_chk.i
96$(obj)/systbl.o: systbl_chk
97
98quiet_cmd_systbl_chk = CALL $<
99 cmd_systbl_chk = $(CONFIG_SHELL) $< $(obj)/systbl_chk.i
100
101PHONY += systbl_chk
102systbl_chk: $(src)/systbl_chk.sh $(obj)/systbl_chk.i
103 $(call cmd,systbl_chk)